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

Loading…
Cancel
Save