fusenapi/server/ldap-admin/internal/handler/routes.go
2023-11-16 14:07:53 +08:00

68 lines
1.6 KiB
Go

// Code generated by goctl. DO NOT EDIT.
package handler
import (
"net/http"
"fusenapi/server/ldap-admin/internal/svc"
"github.com/zeromicro/go-zero/rest"
)
func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
server.AddRoutes(
[]rest.Route{
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_apis",
Handler: GetApisHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/save_api",
Handler: SaveApiHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/save_menu",
Handler: SaveMenuHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/delete_menu",
Handler: DeleteMenuHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_menu_detail",
Handler: GetMenuDetailHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_menus",
Handler: GetMenusHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_departments",
Handler: GetDepartmentsHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/create_ldap_orgination",
Handler: CreateLdapOrganizationHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/delete_ldap_orgination",
Handler: DeleteLdapOrganizationHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/update_ldap_orgination",
Handler: UpdateLdapOrganizationHandler(serverCtx),
},
},
)
}