Added typedoc and minor test update

This commit is contained in:
Michael W Spalti
2023-04-19 11:36:42 -07:00
parent e336660cdd
commit b1f3b785e1
5 changed files with 17 additions and 6 deletions

View File

@@ -17,6 +17,7 @@ export class AuthServiceStub {
token: AuthTokenInfo = new AuthTokenInfo('token_test');
impersonating: string;
private _tokenExpired = false;
private _isExternalAuth = false;
private redirectUrl;
constructor() {
@@ -123,11 +124,11 @@ export class AuthServiceStub {
return;
}
setExternalAuthStatus(externalCookie: boolean) {
return;
this._isExternalAuth = externalCookie;
}
isExternalAuthentication(): Observable<boolean> {
return;
return observableOf(this._isExternalAuth);
}
retrieveAuthMethodsFromAuthStatus(status: AuthStatus) {