fix circular (#18773)
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import type { UmbUserDetailModel, UmbUserStartNodesModel } from '../../types.js';
|
||||
import { UMB_USER_ENTITY_TYPE } from '../../entity.js';
|
||||
import { UmbUserKind } from '../../utils/index.js';
|
||||
import { UmbUserKind } from '../../utils/user-kind.js';
|
||||
import { UmbId } from '@umbraco-cms/backoffice/id';
|
||||
import type { UmbDetailDataSource } from '@umbraco-cms/backoffice/repository';
|
||||
import type {
|
||||
|
||||
@@ -1,8 +1,2 @@
|
||||
export * from './is-user.function.js';
|
||||
|
||||
export type UmbUserKindType = 'Default' | 'Api';
|
||||
|
||||
export const UmbUserKind = Object.freeze({
|
||||
DEFAULT: 'Default',
|
||||
API: 'Api',
|
||||
});
|
||||
export * from './user-kind.js';
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
export type UmbUserKindType = 'Default' | 'Api';
|
||||
|
||||
export const UmbUserKind = Object.freeze({
|
||||
DEFAULT: 'Default',
|
||||
API: 'Api',
|
||||
});
|
||||
Reference in New Issue
Block a user