Browse Source

fix: allow table/view list for all user roles

Signed-off-by: Pranav C <pranavxc@gmail.com>
pull/848/head
Pranav C 3 years ago
parent
commit
f9934a3138
  1. 3
      packages/nocodb/src/lib/utils/projectAcl.ts

3
packages/nocodb/src/lib/utils/projectAcl.ts

@ -3,6 +3,7 @@ export default {
creator: '*',
guest: {},
editor: {
xcTableAndViewList: true,
xcAuditCreate: true,
xcAttachmentUpload: true,
xcVirtualTableList: true,
@ -165,6 +166,7 @@ export default {
xcExportAsCsv: true
},
commenter: {
xcTableAndViewList: true,
xcVirtualTableList: true,
projectList: true,
PROJECT_READ_BY_WEB: true,
@ -189,6 +191,7 @@ export default {
xcExportAsCsv: true
},
viewer: {
xcTableAndViewList: true,
xcVirtualTableList: true,
projectList: true,
PROJECT_READ_BY_WEB: true,

Loading…
Cancel
Save