vue2_frontend...

This commit is contained in:
최준흠 2022-09-17 10:04:48 +09:00
parent d1c5a11f07
commit 765651797e

View File

@ -1,7 +1,6 @@
class TokenService {
isAuthenticated() {
const isAuthenticated = !!this.getAccessToken() || !!this.getRefreshToken()
return isAuthenticated
return !!this.getAccessToken() || !!this.getRefreshToken()
}
getAccessToken() {
const user = this.getUser()