Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions src/main/asciidoc/security/groups.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,27 @@ The default settings for the `admin` group are:

Which allows to execute any operation against the security, the schema and records.

Here is an example for an append-only group:

```json
"appendonly": {
"access": [],
"resultSetLimit": -1,
"readTimeout": -1,
"types": {
"*": {
"access": [
"createRecord",
"readRecord"
]
}
}
}
```

Which allows the group members to read and create, but not to update or delete records.
Such a group can be useful for ledgers, block chains, or data provenance.

You can use any JSON editor to edit the file `config/server-groups.json`.
It's recommended to keep a copy of the current file before editing the groups.
In this way if there are any errors, it's easy to restore the previous file.
Expand Down