From 2c2e87209c1e927206a939a30c48df8f4d2c10dc Mon Sep 17 00:00:00 2001 From: Tim Van Baak Date: Thu, 16 Jan 2020 10:53:59 -0800 Subject: [PATCH] Add default configs for lexicon and user --- .../{default_config.json => global.json} | 0 amanuensis/resources/lexicon.json | 53 +++++++++++++++++++ amanuensis/resources/user.json | 10 ++++ 3 files changed, 63 insertions(+) rename amanuensis/resources/{default_config.json => global.json} (100%) create mode 100644 amanuensis/resources/lexicon.json create mode 100644 amanuensis/resources/user.json diff --git a/amanuensis/resources/default_config.json b/amanuensis/resources/global.json similarity index 100% rename from amanuensis/resources/default_config.json rename to amanuensis/resources/global.json diff --git a/amanuensis/resources/lexicon.json b/amanuensis/resources/lexicon.json new file mode 100644 index 0000000..74206c7 --- /dev/null +++ b/amanuensis/resources/lexicon.json @@ -0,0 +1,53 @@ +{ + "lid": null, + "name": null, + "editor": null, + "turn": { + "current": 1, + "max": 8 + }, + "join": { + "open": true, + "password": null, + "max_players": 4 + }, + "publish": { + "policy": null, + "timespecs": null, + "quorum": null, + "lock_on_ready": false + }, + "article": { + "index": { + "list": null, + "capacity": null + }, + "citation": { + "allow_self": null, + "min_extant": null, + "max_extant": null, + "min_phantom": null, + "max_phantom": null, + "min_total": null, + "max_total": null, + "min_chars": null, + "max_chars": null + }, + "word_limit": { + "soft": null, + "hard": null + }, + "addendum": { + "allowed": false, + "max": null + } + }, + "character": { + "default": { + "cid": "default", + "name": "Ersatz Scrivener", + "player": null, + "signature": "~Ersatz Scrivener" + } + } +} \ No newline at end of file diff --git a/amanuensis/resources/user.json b/amanuensis/resources/user.json new file mode 100644 index 0000000..4372cc7 --- /dev/null +++ b/amanuensis/resources/user.json @@ -0,0 +1,10 @@ +{ + "uid": null, + "username": null, + "displayname": null, + "email": null, + "password": null, + "created": null, + "new_password_required": true, + "is_admin": false +} \ No newline at end of file