mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-05-05 23:58:33 +00:00
feat(menu): Add a menu grouping ID to the file service menu item
This commit is contained in:
parent
e345aac7b4
commit
3e74da643d
1 changed files with 2 additions and 0 deletions
|
|
@ -40,6 +40,7 @@ public class FileInitData implements ApplicationRunner {
|
|||
.icon("IconParkFileCabinet")
|
||||
.path("/" + SystemConfigValues.ADMIN_PAGE_NAME + "/" + FileConfigValues.SERVICE_NAME + "/file")
|
||||
.routeName(SystemConfigValues.ADMIN_PAGE_NAME + "_" + FileConfigValues.SERVICE_NAME + "_file")
|
||||
.menuGroup(SystemConfigValues.ADMIN_MENU_GROUP_ID)
|
||||
.build(),
|
||||
MenuEntity.builder()
|
||||
.id("image")
|
||||
|
|
@ -49,6 +50,7 @@ public class FileInitData implements ApplicationRunner {
|
|||
.icon("IconParkPic")
|
||||
.path("/" + SystemConfigValues.ADMIN_PAGE_NAME + "/" + FileConfigValues.SERVICE_NAME + "/image")
|
||||
.routeName(SystemConfigValues.ADMIN_PAGE_NAME + "_" + FileConfigValues.SERVICE_NAME + "_image")
|
||||
.menuGroup(SystemConfigValues.ADMIN_MENU_GROUP_ID)
|
||||
.build()
|
||||
)).build();
|
||||
menuApi.init(fileServiceMenu);
|
||||
|
|
|
|||
Loading…
Reference in a new issue