-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BUGFIX: show workspace owner/title in media usage tab #5182
Changes from 3 commits
0e15553
3f5f41c
421f7a8
35b3be1
1d034a8
bbeb8df
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,6 +27,9 @@ Neos: | |
# By default, enable the option to create redirects for replaced asset resources | ||
createAssetRedirectsOption: | ||
enable: true | ||
# By default, enable showing the workspace owner/title in media browser usage tab | ||
showWorkspaceOwnerOrName: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO we don't need this switch. If someone doesn't want the feature they can disable or remove the privilege. |
||
enable: true | ||
|
||
Flow: | ||
security: | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -325,8 +325,7 @@ roles: | |
'Neos.Neos:Administrator': | ||
label: Neos Administrator | ||
description: Grants access to all modules and functionalities of the Neos backend. | ||
|
||
parentRoles: ['Neos.Neos:Editor'] | ||
parentRoles: ['Neos.Neos:Editor', 'Neos.Media.Browser:WorkspaceName'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better to assign the privilege in the Media.Browser package to not add a dependency here. 'Neos.Neos:Administrator':
privileges:
-
privilegeTarget: 'Neos.Media.Browser:ManageAssetCollections'
permission: GRANT |
||
privileges: | ||
- | ||
privilegeTarget: 'Neos.Neos:Backend.Module.Administration' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If we just assign the privilege to the admin, we don't need this role IMO. If someone needs it, they can create their own.