Skip to content

Commit 1293462

Browse files
committed
destroy ls
1 parent 1251f19 commit 1293462

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

ui/src/App.vue

+4
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
code: this.$route.query.code,
108108
state: this.$route.query.state
109109
})
110+
TokenService.destroyReferer();
111+
TokenService.destroyCode();
112+
TokenService.destroyState();
113+
TokenService.destroyClientId();
110114
} catch (e) {
111115
this.notification = {
112116
show: true,

ui/src/components/Consent.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ export default {
7979
8080
reject() {
8181
TokenService.destroyReferer();
82-
TokenService.destroyWildServer();
82+
TokenService.destroyCode();
83+
TokenService.destroyState();
84+
TokenService.destroyClientId();
8385
window.location.replace("/")
8486
},
8587
},

0 commit comments

Comments
 (0)