diff options
| author | Shpuld Shpuldson <shpuld@gmail.com> | 2017-06-20 10:37:51 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shpuld@gmail.com> | 2017-06-20 10:37:51 +0300 |
| commit | 1a5ee95ee4e7b739158bc7571b01b32b1af792ad (patch) | |
| tree | d4524542a196fa10f389ccaf490dce3d0b520844 /src/main.js | |
| parent | bfbc94d697df9e80e0454fbae776b6dec85dfc9b (diff) | |
Add a config.json option for enabling registration, don't link and redirect away from register page when it's disabled.
Diffstat (limited to 'src/main.js')
| -rw-r--r-- | src/main.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.js b/src/main.js index 52b820c2..4b7891ed 100644 --- a/src/main.js +++ b/src/main.js @@ -86,11 +86,12 @@ new Vue({ window.fetch('/static/config.json') .then((res) => res.json()) - .then(({name, theme, background, logo, tos}) => { + .then(({name, theme, background, logo, registrationOpen}) => { store.dispatch('setOption', { name: 'name', value: name }) store.dispatch('setOption', { name: 'theme', value: theme }) store.dispatch('setOption', { name: 'background', value: background }) store.dispatch('setOption', { name: 'logo', value: logo }) + store.dispatch('setOption', { name: 'registrationOpen', value: registrationOpen }) }) window.fetch('/static/terms-of-service.html') |
