-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretailer.json
72 lines (72 loc) · 1.4 KB
/
retailer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "Retailer",
"base": "PersistedModel",
"idInjection": true,
"strictDelete": "true",
"options": {
"validateUpsert": true
},
"properties": {
"demoId": {
"required": true,
"type": "string",
"index": true
}
},
"validations": [],
"relations": {
"manager": {
"type": "belongsTo",
"model": "ERPUser",
"foreignKey": "managerId"
},
"retailerAddress": {
"type": "embedsOne",
"model": "Address",
"property": "address",
"options": {
"validate": true,
"forceId": false
}
},
"demo": {
"type": "belongsTo",
"model": "Demo",
"foreignKey": "demoId"
},
"inventories": {
"type": "hasMany",
"model": "Inventory",
"polymorphic": {
"as": "location",
"foreignKey": "locationId",
"discriminator": "locationType"
}
}
},
"mixins": {
"Isolated": {}
},
"hidden": ["demoId"],
"acls": [
{
"accessType": "*",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "DENY"
},
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "supplychainmanager",
"permission": "ALLOW"
},
{
"accessType": "READ",
"principalType": "ROLE",
"principalId": "retailstoremanager",
"permission": "ALLOW"
}
],
"methods": {}
}