File tree Expand file tree Collapse file tree 3 files changed +8
-2
lines changed
src/Umbraco.Web.UI.Client/src/packages/members/member-type Expand file tree Collapse file tree 3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11export * from './entity-actions/constants.js' ;
22export * from './member-type-root/constants.js' ;
3+ export * from './menu/constants.js' ;
34export * from './paths.js' ;
45export * from './property-type/constants.js' ;
56export * from './repository/constants.js' ;
Original file line number Diff line number Diff line change 1+ export const UMB_MEMBER_TYPE_MENU_ITEM_ALIAS = 'Umb.MenuItem.MemberTypes' ;
Original file line number Diff line number Diff line change 1- import { UMB_MEMBER_TYPE_TREE_ALIAS } from '../constants.js' ;
1+ import { UMB_MEMBER_TYPE_MENU_ITEM_ALIAS , UMB_MEMBER_TYPE_TREE_ALIAS } from '../constants.js' ;
22import { UMB_WORKSPACE_CONDITION_ALIAS } from '@umbraco-cms/backoffice/workspace' ;
33
44export const manifests : Array < UmbExtensionManifest > = [
55 {
66 type : 'menuItem' ,
77 kind : 'tree' ,
8- alias : 'Umb.MenuItem.MemberTypes' ,
8+ alias : UMB_MEMBER_TYPE_MENU_ITEM_ALIAS ,
99 name : 'Member Type Menu Item' ,
1010 weight : 700 ,
1111 meta : {
@@ -16,9 +16,13 @@ export const manifests: Array<UmbExtensionManifest> = [
1616 } ,
1717 {
1818 type : 'workspaceContext' ,
19+ kind : 'menuStructure' ,
1920 name : 'Member Type Menu Structure Workspace Context' ,
2021 alias : 'Umb.Context.MemberType.Menu.Structure' ,
2122 api : ( ) => import ( './member-type-menu-structure.context.js' ) ,
23+ meta : {
24+ menuItemAlias : UMB_MEMBER_TYPE_MENU_ITEM_ALIAS ,
25+ } ,
2226 conditions : [
2327 {
2428 alias : UMB_WORKSPACE_CONDITION_ALIAS ,
You can’t perform that action at this time.
0 commit comments