forked from steedos/steedos-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat_rooms.object.yml
60 lines (60 loc) · 1.08 KB
/
chat_rooms.object.yml
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
name: chat_rooms
label: Chat Room
hidden: true
fields:
name:
is_name: true
label: Name
type: text
name: name
searchable: true
members:
label: Members
type: lookup
reference_to: users
multiple: true
name: members
filterable: true
owner:
label: Owner
type:
label: Type
type: select
options:
- label: private
value: private
- label: ' protected'
value: ' protected'
- label: ' public'
value: ' public'
name: type
filterable: true
list_views:
all:
label: All Chat Rooms
columns:
- name
- owner
filter_scope: space
permission_set:
user:
allowCreate: true
allowDelete: false
allowEdit: false
allowRead: true
modifyAllRecords: true
viewAllRecords: true
admin:
allowCreate: true
allowDelete: false
allowEdit: false
allowRead: true
modifyAllRecords: true
viewAllRecords: false
guest:
allowCreate: true
allowDelete: false
allowEdit: false
allowRead: true
modifyAllRecords: true
viewAllRecords: true