diff options
Diffstat (limited to 'roles/pad/templates')
-rw-r--r-- | roles/pad/templates/settings.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/pad/templates/settings.json b/roles/pad/templates/settings.json index dbbbda1..977a562 100644 --- a/roles/pad/templates/settings.json +++ b/roles/pad/templates/settings.json @@ -283,7 +283,7 @@ * Pad creation is only via the API. * This applies both to group pads and regular pads. */ - "editOnly": {{ not etherpad_load_test }}, + "editOnly": {{ (not etherpad_load_test) | bool | lower }}, /* * If true, all css & js will be minified before sending to the client. @@ -530,7 +530,7 @@ * * WARNING: this will disable security on the instance. */ - "loadTest": {{ etherpad_load_test }}, + "loadTest": {{ etherpad_load_test | bool | lower }}, /** * Disable dump of objects preventing a clean exit |