This commit is contained in:
laodaming
2023-11-15 15:16:14 +08:00
parent 2fa8955aa4
commit da2cbb5c4a
5 changed files with 33 additions and 2 deletions

View File

@@ -27,6 +27,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
Path: "/api/ldap-admin/save_api",
Handler: SaveApiHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/save_menu",
Handler: SaveMenuHandler(serverCtx),
},
},
)
}