このコミットが含まれているのは:
dragon1211 2022-01-10 23:14:26 -08:00
コミット 413a5cf59d
2個のファイルの変更1982行の追加1985行の削除

3961
backend/public/js/app.js vendored

ファイル差分が大きすぎるため省略します 差分を読み込み

ファイルの表示

@ -22,10 +22,8 @@ export default function PageChangeHandler() {
let acc = pathname.split('/')[1];
let acc_type = localStorage.getItem('kiki_acc_type');
if((acc_type && (acc != acc_type))) {
axios.get(`/${acc}/logout`)
.then(()=>{
window.location.href = `/${acc}/login`;
})
window.location.href = `/${acc}/login`;
axios.get(`/${acc}/logout`);
}
}