forked from AkkomaGang/akkoma-fe
Do not use underscore at the beginning of the method
This commit is contained in:
parent
0c3cd05965
commit
59b84c2a06
1 changed files with 2 additions and 2 deletions
|
@ -235,7 +235,7 @@ const UserSettings = {
|
|||
if (res.status === 'success') {
|
||||
this.changedPassword = true
|
||||
this.changePasswordError = false
|
||||
this._logout()
|
||||
this.logout()
|
||||
} else {
|
||||
this.changedPassword = false
|
||||
this.changePasswordError = res.error
|
||||
|
@ -245,7 +245,7 @@ const UserSettings = {
|
|||
activateTab (tabName) {
|
||||
this.activeTab = tabName
|
||||
},
|
||||
_logout () {
|
||||
logout () {
|
||||
this.$store.dispatch('logout')
|
||||
this.$router.replace('/')
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue