remove temp method
This commit is contained in:
@@ -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);
|
||||
|
||||
@@ -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.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user