このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
heuzef
/
pinry
ミラー元
https://github.com/pinry/pinry.git
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
44
Wiki
アクティビティ
ソースを参照
Fix: Use refresh for logout
pull/169/head
winkidney
5年前
committed by
Isaac Bythewood
親
602ca97d00
コミット
d5a0260d51
2個のファイルの変更
、
2行の追加
、
2行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+1
-1
pinry-spa/src/components/PHeader.vue
+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();
書き込み
プレビュー
読み込み中…
キャンセル
保存