mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
696 B
38 lines
696 B
2 years ago
|
export default {
|
||
|
creator: '*',
|
||
|
owner: '*',
|
||
|
guest: {},
|
||
|
editor: {
|
||
|
smartSheet: true,
|
||
|
xcDatatableEditable: true,
|
||
|
column: true,
|
||
|
tableAttachment: true,
|
||
|
tableRowUpdate: true,
|
||
|
rowComments: true,
|
||
|
gridViewOptions: true,
|
||
|
sortSync: true,
|
||
|
fieldsSync: true,
|
||
|
gridColUpdate: true,
|
||
|
filterSync: true,
|
||
|
csvImport: true,
|
||
|
apiDocs: true,
|
||
|
projectSettings: true,
|
||
|
},
|
||
|
commenter: {
|
||
|
smartSheet: true,
|
||
|
column: true,
|
||
|
rowComments: true,
|
||
|
projectSettings: true,
|
||
|
},
|
||
|
viewer: {
|
||
|
smartSheet: true,
|
||
|
column: true,
|
||
|
projectSettings: true,
|
||
|
},
|
||
|
user: {
|
||
|
projectCreate: true,
|
||
|
projectActions: true,
|
||
|
projectSettings: true,
|
||
|
},
|
||
|
}
|