mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
get email verified from token service
This commit is contained in:
@@ -148,6 +148,15 @@ export class TokenService implements TokenServiceAbstraction {
|
||||
return decoded.email as string;
|
||||
}
|
||||
|
||||
getEmailVerified(): boolean {
|
||||
const decoded = this.decodeToken();
|
||||
if (typeof decoded.email_verified === 'undefined') {
|
||||
throw new Error('No email verification found');
|
||||
}
|
||||
|
||||
return decoded.email_verified as boolean;
|
||||
}
|
||||
|
||||
getName(): string {
|
||||
const decoded = this.decodeToken();
|
||||
if (typeof decoded.name === 'undefined') {
|
||||
|
||||
Reference in New Issue
Block a user