diff --git a/src/Umbraco.Web.UI.Client/src/shared/auth/auth.interface.ts b/src/Umbraco.Web.UI.Client/src/shared/auth/auth.interface.ts index cbd3cc2372..06c9321c7f 100644 --- a/src/Umbraco.Web.UI.Client/src/shared/auth/auth.interface.ts +++ b/src/Umbraco.Web.UI.Client/src/shared/auth/auth.interface.ts @@ -33,28 +33,8 @@ export interface IUmbAuth { */ getLatestToken(): Promise; - /** - * Get the current user model of the current user. - */ - get currentUser(): Observable; - - /** - * Get the current user's language ISO code. - */ - languageIsoCode: Observable; - - /** - * Make a server request for the current user and save the state - */ - fetchCurrentUser(): Promise; - /** * Signs the user out by removing any tokens from the browser. */ signOut(): Promise; - - /** - * Check if the given user is the current user. - */ - isUserCurrentUser(userId: string): Promise; }