Browse Source

ACL: move isPluginActive from CREATOR to VIEWER; fixes 7535

this change will enable VIEWER to receive emails, whenever new entry added via FORM
pull/7548/head
Slavik 10 months ago committed by GitHub
parent
commit
c5aebecbab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      packages/nocodb/src/utils/acl.ts

2
packages/nocodb/src/utils/acl.ts

@ -255,6 +255,7 @@ const rolePermissions:
passwordChange: true, passwordChange: true,
baseList: true, baseList: true,
testConnection: true, testConnection: true,
isPluginActive: true,
}, },
}, },
[OrgUserRoles.CREATOR]: { [OrgUserRoles.CREATOR]: {
@ -267,7 +268,6 @@ const rolePermissions:
userInviteResend: true, userInviteResend: true,
upload: true, upload: true,
uploadViaURL: true, uploadViaURL: true,
isPluginActive: true,
baseCreate: true, baseCreate: true,
duplicateSharedBase: true, duplicateSharedBase: true,
}, },

Loading…
Cancel
Save