Annotate
mod_readonly/README.markdown @ 4419:1185acb2ab91
mod_groups_internal: handle empty groups correctly
Otherwise, this causes a traceback when syncing the group.
author |
Jonas Schäfer <jonas@wielicki.name> |
date |
Sun, 31 Jan 2021 16:09:14 +0100 (2021-01-31) |
parent |
3437:ce5d1fa69ba3 |
rev |
line source |
3437
|
1 This module blocks configured queries that change server state.
|
|
2
|
|
3 E.g. to make vCard storage read-only:
|
|
4
|
|
5 ``` lua
|
|
6 readonly_stores = {
|
|
7 vcard = { "vcard-temp", "vCard" };
|
|
8 }
|
|
9 ```
|