-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunite_cms_domain_config.json
66 lines (66 loc) · 1.74 KB
/
unite_cms_domain_config.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
{
"title": "my Domain",
"identifier": "mydomain",
"content_types": [
{
"title": "Page",
"identifier": "page",
"content_label": "{type} #{id}",
"fields": [
{
"title": "Headline",
"identifier": "headline",
"type": "text"
},
{
"title": "Image",
"identifier": "image",
"type": "image",
"settings": {
"bucket": {
"endpoint": "https://my_s3_storage_provider.com",
"bucket": "mybucket",
"key": "xxxxx",
"secret": "xxxxxxxxxxxxxxx",
"path": "myfiles"
},
"thumbnail_url": "https://your_thumbnailing_service.com/{endpoint}/{id}/{name}"
}
}
],
"views": [
{
"title": "All",
"identifier": "all",
"type": "table"
}
],
"permissions": {
"view content": "true",
"list content": "true",
"create content": "member.type == \"editor\"",
"update content": "member.type == \"editor\"",
"delete content": "member.type == \"editor\""
}
}
],
"setting_types": [],
"domain_member_types": [
{
"title": "Editor",
"identifier": "editor",
"domain_member_label": "{accessor}",
"fields": []
},
{
"title": "Viewer",
"identifier": "viewer",
"domain_member_label": "{accessor}",
"fields": []
}
],
"permissions": {
"view domain": "true",
"update domain": "false"
}
}