Store Menu Items
Store Menu Item UI Extension for Umbraco Commerce
Last updated
Was this helpful?
Store Menu Item UI Extension for Umbraco Commerce
Last updated
Was this helpful?
Was this helpful?
import { UcManifestStoreMenuItem } from "@umbraco-commerce/backoffice";
export const manifests : UcManifestStoreMenuItem[] = [
{
type: 'ucStoreMenuItem',
alias: 'analytics',
name: 'Analytics',
meta: {
label: '#ucMenus_analytics',
menus: [ 'Uc.Menu.StoreManagement' ],
entityType: 'uc:analtics',
icon: 'icon-chart-curve'
},
weight: 100
}
];
extensionRegistry.register(manifests);section/{currentSection}/workspace/{rootEntityType}/{rootUnique}/{entityType}const manifests: UmbExtensionManifest[] = [
{
type: 'workspace',
kind: 'routable',
alias: 'My.Workspace.MyEntity',
name: 'My Entity Workspace',
api: () => import('./my-workspace.context.js'),
meta: {
entityType: 'my:entity-type',
}
}
];
extensionRegistry.register(manifests);