mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: add scim service provider config endpoint (#15235)
Adds a static `/scim/v2/ServiceProviderConfig` endpoint. Our scim support is static, so the response config is also defined statically.
This commit is contained in:
Generated
+17
@@ -3623,6 +3623,23 @@ const docTemplate = `{
|
||||
}
|
||||
}
|
||||
},
|
||||
"/scim/v2/ServiceProviderConfig": {
|
||||
"get": {
|
||||
"produces": [
|
||||
"application/scim+json"
|
||||
],
|
||||
"tags": [
|
||||
"Enterprise"
|
||||
],
|
||||
"summary": "SCIM 2.0: Service Provider Config",
|
||||
"operationId": "scim-get-service-provider-config",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/scim/v2/Users": {
|
||||
"get": {
|
||||
"security": [
|
||||
|
||||
Generated
+13
@@ -3189,6 +3189,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/scim/v2/ServiceProviderConfig": {
|
||||
"get": {
|
||||
"produces": ["application/scim+json"],
|
||||
"tags": ["Enterprise"],
|
||||
"summary": "SCIM 2.0: Service Provider Config",
|
||||
"operationId": "scim-get-service-provider-config",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/scim/v2/Users": {
|
||||
"get": {
|
||||
"security": [
|
||||
|
||||
Reference in New Issue
Block a user