Add a config.json option for enabling registration, don't link and redirect away from register page when it's disabled.

This commit is contained in:
Shpuld Shpuldson 2017-06-20 10:37:51 +03:00
parent bfbc94d697
commit 1a5ee95ee4
5 changed files with 12 additions and 4 deletions

View file

@ -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')