]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/angular/users/models/token.ts
Lint the client
[github/Chocobozzz/PeerTube.git] / client / angular / users / models / token.ts
index 906bf501b401595b4dca25d6fe042b6e114ec53f..b7872e74a1fe69583ce796e919518ec5b26c0a69 100644 (file)
@@ -3,6 +3,14 @@ export class Token {
   refresh_token: string;
   token_type: string;
 
+  static load(): Token {
+    return new Token({
+      access_token: localStorage.getItem('access_token'),
+      refresh_token: localStorage.getItem('refresh_token'),
+      token_type: localStorage.getItem('token_type')
+    });
+  }
+
   constructor (hash?: any) {
     if (hash) {
       this.access_token = hash.access_token;
@@ -15,14 +23,6 @@ export class Token {
     }
   }
 
-  static load(): Token {
-    return new Token({
-      access_token: localStorage.getItem('access_token'),
-      refresh_token: localStorage.getItem('refresh_token'),
-      token_type: localStorage.getItem('token_type')
-    });
-  }
-
   save():void {
     localStorage.setItem('access_token', this.access_token);
     localStorage.setItem('refresh_token', this.refresh_token);