the missing piece for invites system

This commit is contained in:
Henry Jameson 2018-08-05 10:01:38 +03:00
parent 32fd108e97
commit 9cebb00faa
5 changed files with 18 additions and 4 deletions

View file

@ -5,17 +5,23 @@ const registration = {
registering: false
}),
created () {
if (!this.$store.state.config.registrationOpen || !!this.$store.state.users.currentUser) {
if ((!this.$store.state.config.registrationOpen && !this.token) || !!this.$store.state.users.currentUser) {
this.$router.push('/main/all')
}
// Seems like this doesn't work at first page open for some reason
if (this.$store.state.config.registrationOpen && this.token) {
this.$router.push('/registration')
}
},
computed: {
termsofservice () { return this.$store.state.config.tos }
termsofservice () { return this.$store.state.config.tos },
token () { return this.$route.params.token }
},
methods: {
submit () {
this.registering = true
this.user.nickname = this.user.username
this.user.token = this.token
this.$store.state.api.backendInteractor.register(this.user).then(
(response) => {
if (response.ok) {