Преглед изворни кода

Fix: Use refresh for logout

pull/169/head
winkidney пре 5 година
committed by Isaac Bythewood
родитељ
комит
d5a0260d51
2 измењених фајлова са 2 додато и 2 уклоњено
  1. +1
    -1
      pinry-spa/src/components/PHeader.vue
  2. +1
    -1
      pinry-spa/src/components/api.js

+ 1
- 1
pinry-spa/src/components/PHeader.vue Прегледај датотеку

@@ -105,7 +105,7 @@ export default {
logOut() {
api.User.logOut().then(
() => {
this.$router.push('/');
window.location.reload();
},
);
},


+ 1
- 1
pinry-spa/src/components/api.js Прегледај датотеку

@@ -39,7 +39,7 @@ const User = {
const self = this;
return new Promise(
(resolve) => {
axios.get('/api-auth/logout/?next=/api/v2/').then(
axios.get('/api-auth/logout/').then(
() => {
storage.set(self.storageKey, null, 1);
resolve();


Loading…
Откажи
Сачувај