// 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_ldap_group", Handler: GetLdapGroupsHandler(serverCtx), }, { Method: http.MethodGet, Path: "/api/ldap-admin/get_ldap_group_detail", Handler: GetLdapGroupDetailHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/save_ldap_group", Handler: SaveLdapGroupHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/delete_ldap_group", Handler: DeleteLdapGroupHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/set_ldap_group_auth", Handler: SetLdapGroupAuthHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/set_ldap_group_user", Handler: SetLdapGroupUserHandler(serverCtx), }, { 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/delete_api", Handler: DeleteApiHandler(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_ldap_organizations", Handler: GetLdapOrganizationsHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/create_ldap_organization", Handler: CreateLdapOrganizationHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/delete_ldap_organization", Handler: DeleteLdapOrganizationHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/update_ldap_organization", Handler: UpdateLdapOrganizationHandler(serverCtx), }, { 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/update_ldap_user_pwd", Handler: UpdateLdapUserPwdHandler(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), }, { Method: http.MethodPost, Path: "/api/ldap-admin/add_ldap_organization_member", Handler: AddLdapOrganizationMemberHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/remove_ldap_organization_member", Handler: RemoveLdapOrganizationMemberHandler(serverCtx), }, { Method: http.MethodGet, Path: "/api/ldap-admin/get_ldap_organization_members", Handler: GetLdapOrganizationMembersHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/create_ldap_user_base_group", Handler: CreateLdapUserBaseGroupHandler(serverCtx), }, { Method: http.MethodGet, Path: "/api/ldap-admin/get_ldap_users", Handler: GetLdapUsersHandler(serverCtx), }, { Method: http.MethodPost, Path: "/api/ldap-admin/ldap_user_login", Handler: LdapUserLoginHandler(serverCtx), }, }, ) }