mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-09-08 06:41:48 -04:00
use jwt
This commit is contained in:
parent
4becb97a5d
commit
9ddd2c7365
2 changed files with 5 additions and 23 deletions
|
@ -487,9 +487,11 @@ export default {
|
|||
},
|
||||
|
||||
loadUsername() {
|
||||
this.$root.getSocket().emit("getUsername", (res) => {
|
||||
this.username = res.data;
|
||||
});
|
||||
const jwtToken = localStorage.getItem("token");
|
||||
const [match, headerBase64, payloadBase64, signatureBase64] = jwtToken.match(/^(\S+)\.(\S+)\.(\S+)$/i);
|
||||
const payload = atob(payloadBase64);
|
||||
const oPayload = JSON.parse(payload);
|
||||
this.username = oPayload.username;
|
||||
},
|
||||
|
||||
loadSettings() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue