mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08: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:
parent
f5448269ee
commit
f9a810aaf7
|
@ -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],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue