106. Get token from local storage (#12)

This commit is contained in:
Art
2021-09-12 12:36:22 +03:00
parent 5bcfd8d7bf
commit e00bf6b789

View File

@ -57,4 +57,8 @@ export class AuthenticationService {
return JSON.parse(userJson!);
}
public getToken(): string | null {
return this.token;
}
}