- Issue created by @mlncn
Seems a user with the manager role cannot edit block content— including the block that says "Use this space for your attribution or copyright information." Not good!
Modify the manager role to have added permissions like in this diff from a Drutopia site config export:
config/user.role.manager.yml
@@ -3,10 +3,13 @@ langcode: en
status: true
dependencies:
config:
+ - block_content.type.basic
+ - block_content.type.slide
- filter.format.restricted_html
- node.type.event
module:
- block
+ - block_content
- comment
- config_perms
- contact
@@ -36,6 +39,7 @@ permissions:
- 'Administer site information'
- 'Edit contact form'
- 'access administration pages'
+ - 'access block library'
- 'access content overview'
- 'access contextual links'
- 'access files overview'
@@ -59,19 +63,27 @@ permissions:
- 'assign manager role'
- 'bypass node access'
- 'bypass node access'
+ - 'create basic block content'
- 'create event content'
+ - 'create slide block content'
- 'create url aliases'
- 'create url aliases'
- 'delete all revisions'
- 'delete any event content'
- 'delete event revisions'
+ - 'edit any basic block content'
- 'edit any event content'
+ - 'edit any slide block content'
- 'revert all revisions'
+ - 'revert any basic block content revisions'
+ - 'revert any slide block content revisions'
- 'revert event revisions'
- 'skip comment approval'
- 'use exclude node title'
- 'use text format restricted_html'
- 'view all revisions'
+ - 'view any basic block content history'
+ - 'view any slide block content history'
- 'view event revisions'
- 'view own unpublished content'
Active
2.0
Code