X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Fservices%2FAuthenticationService.ts;h=e839f75c21520398e87588d07575c40acfee3337;hb=6c6860802cae8fe2ae0db852476fc926ea899062;hp=904c1cf82c3c51fa037fe28faece3bdd06530dae;hpb=e478d7eaa9ac0636c14f62450364729519ef8f8e;p=osm%2FNG-UI.git diff --git a/src/services/AuthenticationService.ts b/src/services/AuthenticationService.ts index 904c1cf..e839f75 100644 --- a/src/services/AuthenticationService.ts +++ b/src/services/AuthenticationService.ts @@ -65,6 +65,9 @@ export class AuthenticationService { /** Holds the change password in condition of type BehaviorSubject @private */ private changePassword: BehaviorSubject = new BehaviorSubject(false); + /** Holds the forgotpassword in condition of type BehaviorSubject @public */ + public forgotPassword: BehaviorSubject = new BehaviorSubject(false); + /** Hold Rest Service Objects */ private restService: RestService; @@ -115,6 +118,13 @@ export class AuthenticationService { return this.changePassword.asObservable(); } + /** + * Get method for Observable forgotssword + */ + get isForgotPassword(): Observable { + return this.forgotPassword.asObservable(); + } + /** * Get method for Observable Username */