-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
75 lines (71 loc) · 2.05 KB
/
settings.py
File metadata and controls
75 lines (71 loc) · 2.05 KB
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
73
74
75
MONGO_URI = "mongodb://127.0.0.1:27017/visma_work_test"
MONGO_DB = "visma_work_test"
RESOURCE_METHODS = ['GET', 'POST']
ITEM_METHODS = ['GET', 'PATCH', 'PUT', 'DELETE']
DOMAIN = {
'secret_documents': {
'item_title': 'Secret-Document',
'schema': {
'headline': {
'type': 'string',
'required': True,
},
'description': {
'type': 'string',
},
'parent': {
'type': 'objectid',
'nullable': True,
'data_relation': {
'resource': 'secret_documents',
'embeddable': True
},
},
'is_enabled': {'type': 'boolean', 'default': True},
},
},
'wiki_documents': {
'item_title': 'Wiki-Document',
'schema': {
'headline': {
'type': 'string',
'required': True,
},
'description': {
'type': 'string',
},
'parent': {
'type': 'objectid',
'nullable': True,
'data_relation': {
'resource': 'wiki_documents',
'embeddable': True
},
},
'is_enabled': {'type': 'boolean', 'default': True},
},
},
'users': {
'item_title': 'User',
'schema': {
'username': {
'type': 'string',
'unique': True,
'required': True,
},
'password': {
'type': 'string',
'required': True,
},
'view_access': {
'type': 'list',
'allowed': ["users", "secret_documents", "wiki_documents"]
},
'edit_access': {
'type': 'list',
'allowed': ["users", "secret_documents", "wiki_documents"]
},
'is_enabled': {'type': 'boolean', 'default': True},
},
}
}