2020-06-22 01:58:55 +00:00
|
|
|
# `wikipack`
|
2020-06-21 14:38:25 +00:00
|
|
|
|
2020-06-22 01:58:55 +00:00
|
|
|
This pack adds a small Wiki to Royalnet, allowing communities to create their own small Wikis.
|
2020-06-21 14:38:25 +00:00
|
|
|
|
2020-06-22 01:58:55 +00:00
|
|
|
## Configuration options
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[Packs."wikipack"]
|
|
|
|
|
|
|
|
# The roles that are authorized by default to complete certain actions.
|
|
|
|
# Setting them to an empty string disables the authentication requirement, allowing unauthenticated users that privilege
|
|
|
|
[Packs."wikipack".roles]
|
|
|
|
|
|
|
|
# Users with this role will be able to view wiki pages that do not have a different role set.
|
|
|
|
view = ""
|
|
|
|
|
|
|
|
# Users with this role will be able to create new wiki pages.
|
|
|
|
create = "wiki_create"
|
|
|
|
|
|
|
|
# Users with this role will be able to edit wiki pages that do not have a different role set.
|
|
|
|
edit = "wiki_edit"
|
|
|
|
|
|
|
|
# Users with this role will be able to delete wiki pages.
|
|
|
|
delete = "wiki_delete"
|
|
|
|
|
|
|
|
# Users with this role will override all other privileges.
|
|
|
|
admin = "wiki_admin"
|
|
|
|
```
|