Auth認証画面から正常にログインできるよう修正 (#6154)

* Fix #6095

Auth認証画面から正常にログインできるよう修正

* Fix #6095
This commit is contained in:
Yuiga Wada 2020-03-14 15:59:02 +09:00 committed by GitHub
parent a2d3d22b6e
commit b5d5275e9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

0
src/client/components/signin.vue Normal file → Executable file
View File

5
src/client/pages/auth.vue Normal file → Executable file
View File

@ -26,7 +26,7 @@
</div>
<div class="signin" v-else>
<h1>{{ $t('sign-in') }}</h1>
<mk-signin/>
<mk-signin @login="onLogin"/>
</div>
</template>
@ -85,6 +85,9 @@ export default Vue.extend({
if (this.session.app.callbackUrl) {
location.href = `${this.session.app.callbackUrl}?token=${this.session.token}`;
}
}, onLogin(res) {
localStorage.setItem('i', res.i);
location.reload();
}
}
});