Chore: Fix missing enterprise operation from swagger (#77122)

This commit is contained in:
Sofia Papagiannaki
2023-10-25 13:20:36 +03:00
committed by GitHub
parent 01add144b8
commit 00c9981c51
3 changed files with 29 additions and 2 deletions

View File

@@ -639,6 +639,31 @@
}
}
},
"/admin/ldap-sync-status": {
"get": {
"description": "You need to have a permission with action `ldap.status:read`.",
"tags": [
"ldap_debug",
"enterprise"
],
"summary": "Returns the current state of the LDAP background sync integration.",
"operationId": "getSyncStatus",
"responses": {
"200": {
"$ref": "#/responses/getSyncStatusResponse"
},
"401": {
"$ref": "#/responses/unauthorisedError"
},
"403": {
"$ref": "#/responses/forbiddenError"
},
"500": {
"$ref": "#/responses/internalServerError"
}
}
}
},
"/admin/provisioning/access-control/reload": {
"post": {
"tags": [

View File

@@ -643,7 +643,8 @@
"get": {
"description": "You need to have a permission with action `ldap.status:read`.",
"tags": [
"ldap_debug"
"ldap_debug",
"enterprise"
],
"summary": "Returns the current state of the LDAP background sync integration.",
"operationId": "getSyncStatus",

View File

@@ -12510,7 +12510,8 @@
},
"summary": "Returns the current state of the LDAP background sync integration.",
"tags": [
"ldap_debug"
"ldap_debug",
"enterprise"
]
}
},