mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
fix(editor): Enterprise features missing with UM (#5995)
* fix allowed roles * fix(editor): remove unnecessary allowance rule from log streaming route * fix for log streaming * trigger checks --------- Co-authored-by: Romain Minaud <romain.minaud@gmail.com>
This commit is contained in:
@@ -612,11 +612,10 @@ export const routes = [
|
||||
},
|
||||
permissions: {
|
||||
allow: {
|
||||
loginStatus: [LOGIN_STATUS.LoggedIn],
|
||||
role: [ROLE.Owner],
|
||||
role: [ROLE.Default, ROLE.Owner],
|
||||
},
|
||||
deny: {
|
||||
role: [ROLE.Default],
|
||||
role: [ROLE.Member],
|
||||
},
|
||||
},
|
||||
},
|
||||
@@ -675,7 +674,10 @@ export const routes = [
|
||||
meta: {
|
||||
permissions: {
|
||||
allow: {
|
||||
role: [ROLE.Owner],
|
||||
role: [ROLE.Default, ROLE.Owner],
|
||||
},
|
||||
deny: {
|
||||
role: [ROLE.Member],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user