- ++Booking List

- ++Delete a Booking also for the Admin.
This commit is contained in:
Paolo Arena
2019-10-12 23:34:58 +02:00
parent bba0c05a73
commit eed1082ac6
23 changed files with 320 additions and 423 deletions

View File

@@ -350,6 +350,10 @@ export default class Header extends Vue {
return UserStore.state.isLogged
}
get isVerified() {
return UserStore.state.verified_email
}
public loginOk() {
tools.loginOk(this, false)
}
@@ -359,7 +363,7 @@ export default class Header extends Vue {
}
public checkErrors(riscode) {
tools.checkErrors(this, riscode)
tools.SignIncheckErrors(this, riscode)
}
public showNotif(msgcode) {
@@ -369,4 +373,9 @@ export default class Header extends Vue {
public mythis() {
return this
}
public clickregister() {
this.right = false
this.$router.replace('/signup')
}
}