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

pull/77040/head^2
Sofia Papagiannaki 2 years ago committed by GitHub
parent 01add144b8
commit 00c9981c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 25
      public/api-enterprise-spec.json
  2. 3
      public/api-merged.json
  3. 3
      public/openapi3.json

@ -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": [

@ -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",

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

Loading…
Cancel
Save