From 0e7586a6b5774f24fa1fb2a0b5d628004e071c53 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Thu, 4 Jul 2024 21:25:22 +0200 Subject: [PATCH] split consts --- .../src/packages/user/user-section/constants.ts | 1 + .../src/packages/user/user-section/manifests.ts | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 src/Umbraco.Web.UI.Client/src/packages/user/user-section/constants.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user-section/constants.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user-section/constants.ts new file mode 100644 index 0000000000..4d677fca76 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user-section/constants.ts @@ -0,0 +1 @@ +export const UMB_USER_MANAGEMENT_SECTION_ALIAS = 'Umb.Section.Users'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user-section/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user-section/manifests.ts index c177498856..74bb597e28 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/user-section/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user-section/manifests.ts @@ -1,7 +1,6 @@ +import { UMB_USER_MANAGEMENT_SECTION_ALIAS } from './constants.js'; import type { ManifestSection, ManifestTypes } from '@umbraco-cms/backoffice/extension-registry'; -export const UMB_USER_MANAGEMENT_SECTION_ALIAS = 'Umb.Section.Users'; - const section: ManifestSection = { type: 'section', alias: UMB_USER_MANAGEMENT_SECTION_ALIAS,