From 2e7ac4ed7ce5c9d45fef1d8db30d032207589811 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Sun, 19 May 2024 20:30:20 +0200 Subject: [PATCH] add user root entity type --- src/Umbraco.Web.UI.Client/src/packages/user/user/entity.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/packages/user/user/entity.ts b/src/Umbraco.Web.UI.Client/src/packages/user/user/entity.ts index add1de029d..36aafabbcf 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/user/user/entity.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/user/user/entity.ts @@ -1,3 +1,5 @@ export const UMB_USER_ENTITY_TYPE = 'user'; +export const UMB_USER_ROOT_ENTITY_TYPE = 'user-root'; export type UmbUserEntityType = typeof UMB_USER_ENTITY_TYPE; +export type UmbUserRootEntityType = typeof UMB_USER_ROOT_ENTITY_TYPE;