diff --git a/support-portal-frontend/src/app/service/authentication.service.ts b/support-portal-frontend/src/app/service/authentication.service.ts index 72d0bda..07346c6 100644 --- a/support-portal-frontend/src/app/service/authentication.service.ts +++ b/support-portal-frontend/src/app/service/authentication.service.ts @@ -57,4 +57,8 @@ export class AuthenticationService { return JSON.parse(userJson!); } + public getToken(): string | null { + return this.token; + } + }