-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs about permissions and webmaster libraries
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Permissions and roles | ||
|
||
'mediator': | ||
* For users who frequently create dynamic content on the website. | ||
* Can create and edit events, articles, pages, and campaigns in | ||
/admin/content. | ||
|
||
'editor': | ||
* For users who, in addition to content creation, are responsible for | ||
static content (e.g., opening hours) and the site's structure. | ||
* Can coordinate and manage the work of mediators. | ||
* Has access to the same as mediator plus all content types in | ||
/admin/content, as well as taxonomy and menus in /admin/structure. | ||
|
||
'local_administrator': | ||
* For users who need to configure the website in terms of settings, | ||
appearance, integrations, general information, library usage, etc. | ||
* Has access to the same as editor plus the site's configuration | ||
options in /admin/config, user creation in /admin/people, and | ||
changing the site's appearance in /admin/appearance. | ||
* This is the role assigned to trusted users on regular libraries. | ||
|
||
'administrator': | ||
* Can modify the site beyond the CMS's standard settings, e.g., by | ||
enabling and disabling modules. | ||
* Has access to everything in the CMS. | ||
* This is the role assigned to trusted users on webmaster libraries. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Webmaster libraries | ||
|
||
Libraries on the "webmaster" plan has extended permissions compared to | ||
regular libraries. They have access to most of the Drupal | ||
administration pages, and can install custom modules. | ||
|
||
See [Permissions and roles](./permissions-and-roles) for details on | ||
Drupal setup. | ||
|
||
In addition to the Drupal setup, the site should use the `webmaster` | ||
plan when configured in [DPL | ||
Platform](https://danskernesdigitalebibliotek.github.io/dpl-docs/DPL-Platform/), | ||
this creates a `moduletest` environment for testing and implies a | ||
slightly different deployment scheduling. |