From bb70b018f937716402bcd2849b2e26310763ba9b Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Fri, 12 May 2023 16:35:44 +0200 Subject: [PATCH] move auth to app --- src/Umbraco.Web.UI.Client/src/app/app.element.ts | 2 +- src/Umbraco.Web.UI.Client/src/{core => app}/auth/auth-flow.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/Umbraco.Web.UI.Client/src/{core => app}/auth/auth-flow.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/app/app.element.ts b/src/Umbraco.Web.UI.Client/src/app/app.element.ts index b9626187b8..63561c8543 100644 --- a/src/Umbraco.Web.UI.Client/src/app/app.element.ts +++ b/src/Umbraco.Web.UI.Client/src/app/app.element.ts @@ -9,9 +9,9 @@ import { UUIIconRegistryEssential } from '@umbraco-ui/uui'; import { css, html } from 'lit'; import { customElement, property } from 'lit/decorators.js'; -import { UmbAuthFlow } from '../core/auth/auth-flow'; import { UmbIconStore } from '../core/stores/icon/icon.store'; import type { UmbErrorElement } from '../error/error.element'; +import { UmbAuthFlow } from './auth/auth-flow'; import { UMB_APP, UmbAppContext } from './app.context'; import type { Guard, UmbRoute } from '@umbraco-cms/backoffice/router'; import { pathWithoutBasePath } from '@umbraco-cms/backoffice/router'; diff --git a/src/Umbraco.Web.UI.Client/src/core/auth/auth-flow.ts b/src/Umbraco.Web.UI.Client/src/app/auth/auth-flow.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/core/auth/auth-flow.ts rename to src/Umbraco.Web.UI.Client/src/app/auth/auth-flow.ts