1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge pull request #7013 from Budibase/fix/fix-access-issue

Ensure auth access for builder and admins
This commit is contained in:
Peter Clement 2022-08-01 09:08:41 +01:00 committed by GitHub
commit d9e45a1bab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,8 @@
$: {
if (!Object.keys($auth.user?.roles).length && $auth.user?.userGroups) {
userApps = $auth.user?.builder?.global
userApps =
$auth.user?.builder?.global || $auth.user?.admin?.global
? publishedApps
: publishedApps.filter(app => {
return userGroups.find(group => {
@ -56,7 +57,8 @@
})
})
} else {
userApps = $auth.user?.builder?.global
userApps =
$auth.user?.builder?.global || $auth.user?.admin?.global
? publishedApps
: publishedApps.filter(app =>
Object.keys($auth.user?.roles)