remove temp method

This commit is contained in:
Mads Rasmussen
2023-11-10 12:54:49 +01:00
parent 50be746acf
commit 18f4043971
2 changed files with 0 additions and 7 deletions

View File

@@ -26,11 +26,6 @@ export class UmbAuthContext extends UmbBaseController implements IUmbAuth {
return this.#authFlow.makeAuthorizationRequest();
}
/* TEMPORARY METHOD UNTIL RESPONSIBILITY IS MOVED TO CONTEXT */
setLoggedIn(newValue: boolean): void {
return this.#isAuthorized.next(newValue);
}
getIsAuthorized() {
if (this.isBypassed) {
this.#isAuthorized.next(true);

View File

@@ -3,8 +3,6 @@ import { Observable } from '@umbraco-cms/backoffice/external/rxjs';
export interface IUmbAuth {
isAuthorized: Observable<boolean>;
setLoggedIn(loggedIn: boolean): void;
/**
* Initiates the login flow.
*/