88 lines
2.1 KiB
Go
Raw Normal View History

2023-11-13 17:52:20 +08:00
// 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{
2023-11-14 15:03:01 +08:00
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_apis",
Handler: GetApisHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/save_api",
Handler: SaveApiHandler(serverCtx),
},
2023-11-15 15:16:14 +08:00
{
Method: http.MethodPost,
Path: "/api/ldap-admin/save_menu",
Handler: SaveMenuHandler(serverCtx),
},
2023-11-15 15:50:18 +08:00
{
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),
},
2023-11-16 14:07:53 +08:00
{
Method: http.MethodGet,
2023-11-16 14:29:24 +08:00
Path: "/api/ldap-admin/get_ldap_orginations",
2023-11-16 16:59:51 +08:00
Handler: GetLdapOrginationsHandler(serverCtx),
2023-11-16 14:07:53 +08:00
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/create_ldap_orgination",
2023-11-16 14:29:24 +08:00
Handler: CreateLdapOrginationHandler(serverCtx),
2023-11-16 14:07:53 +08:00
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/delete_ldap_orgination",
2023-11-16 14:29:24 +08:00
Handler: DeleteLdapOrginationHandler(serverCtx),
2023-11-16 14:07:53 +08:00
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/update_ldap_orgination",
2023-11-16 14:29:24 +08:00
Handler: UpdateLdapOrginationHandler(serverCtx),
2023-11-16 14:07:53 +08:00
},
2023-11-16 16:57:29 +08:00
{
Method: http.MethodPost,
Path: "/api/ldap-admin/create_ldap_user",
Handler: CreateLdapUserHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/update_ldap_user",
Handler: UpdateLdapUserHandler(serverCtx),
},
{
Method: http.MethodPost,
Path: "/api/ldap-admin/delete_ldap_user",
Handler: DeleteLdapUserHandler(serverCtx),
},
{
Method: http.MethodGet,
Path: "/api/ldap-admin/get_ldap_user_info",
Handler: GetLdapUserInfoHandler(serverCtx),
},
2023-11-13 17:52:20 +08:00
},
)
}