From fb65086adb53e466bd88e172b65a2e73174633fc Mon Sep 17 00:00:00 2001 From: Tobias Kurze Date: Tue, 13 Aug 2019 16:30:23 +0200 Subject: [PATCH] returning jwt in profile --- src/components/Profile.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Profile.vue b/src/components/Profile.vue index 49d1203..9e20f0e 100644 --- a/src/components/Profile.vue +++ b/src/components/Profile.vue @@ -7,6 +7,7 @@

Profile

Token validity ({{tokenValidity}})

Refresh token validity ({{refreshTokenValidity}})

+

access_token ({{access_token}})

{{profile.id}}

{{ errorMsg }}

@@ -59,6 +60,9 @@ profile() { return this.$store.state.profile; }, + access_token() { + return this.$store.state.access_token; + } }, };