This commit is contained in:
laodaming
2023-11-17 11:24:54 +08:00
parent 18b27b61ac
commit 3cc3751d09
12 changed files with 31 additions and 18 deletions

View File

@@ -92,6 +92,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
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),
},
},
)
}