aboutsummaryrefslogtreecommitdiff
path: root/src/components/registration/registration.js
diff options
context:
space:
mode:
authorShpuld Shpuldson <shpuld@gmail.com>2017-06-20 10:37:51 +0300
committerShpuld Shpuldson <shpuld@gmail.com>2017-06-20 10:37:51 +0300
commit1a5ee95ee4e7b739158bc7571b01b32b1af792ad (patch)
treed4524542a196fa10f389ccaf490dce3d0b520844 /src/components/registration/registration.js
parentbfbc94d697df9e80e0454fbae776b6dec85dfc9b (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/components/registration/registration.js')
-rw-r--r--src/components/registration/registration.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js
index 9e99197c..771b3b27 100644
--- a/src/components/registration/registration.js
+++ b/src/components/registration/registration.js
@@ -4,6 +4,11 @@ const registration = {
error: false,
registering: false
}),
+ created () {
+ if (!this.$store.state.config.registrationOpen || !!this.$store.state.users.currentUser) {
+ this.$router.push('/main/all')
+ }
+ },
computed: {
termsofservice () { return this.$store.state.config.tos }
},