Browse Source

feat: enabled export csv option for other user roles

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

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

@ -161,7 +161,8 @@ export default {
xcModelRowAuditAndCommentList: true, xcModelRowAuditAndCommentList: true,
xcAuditCommentInsert: true, xcAuditCommentInsert: true,
xcAuditModelCommentsCount: true xcAuditModelCommentsCount: true,
xcExportAsCsv: true
}, },
commenter: { commenter: {
xcVirtualTableList: true, xcVirtualTableList: true,
@ -184,7 +185,8 @@ export default {
xcModelRowAuditAndCommentList: true, xcModelRowAuditAndCommentList: true,
xcAuditCommentInsert: true, xcAuditCommentInsert: true,
xcAuditModelCommentsCount: true xcAuditModelCommentsCount: true,
xcExportAsCsv: true
}, },
viewer: { viewer: {
xcVirtualTableList: true, xcVirtualTableList: true,
@ -203,7 +205,8 @@ export default {
relationList: true, relationList: true,
relationListAll: true, relationListAll: true,
indexList: true, indexList: true,
list: true list: true,
xcExportAsCsv: true
}, },
user_new: { user_new: {
projectList: true projectList: true

Loading…
Cancel
Save