mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
chore: correctly document SCIM authentication (#15234)
This commit is contained in:
Generated
+9
-4
@@ -3627,7 +3627,7 @@ const docTemplate = `{
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
@@ -3647,7 +3647,7 @@ const docTemplate = `{
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
@@ -3683,7 +3683,7 @@ const docTemplate = `{
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
@@ -3713,7 +3713,7 @@ const docTemplate = `{
|
||||
"patch": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": [
|
||||
@@ -16289,6 +16289,11 @@ const docTemplate = `{
|
||||
}
|
||||
},
|
||||
"securityDefinitions": {
|
||||
"Authorization": {
|
||||
"type": "apiKey",
|
||||
"name": "Authorizaiton",
|
||||
"in": "header"
|
||||
},
|
||||
"CoderSessionToken": {
|
||||
"type": "apiKey",
|
||||
"name": "Coder-Session-Token",
|
||||
|
||||
Generated
+9
-4
@@ -3193,7 +3193,7 @@
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": ["application/scim+json"],
|
||||
@@ -3209,7 +3209,7 @@
|
||||
"post": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": ["application/json"],
|
||||
@@ -3241,7 +3241,7 @@
|
||||
"get": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": ["application/scim+json"],
|
||||
@@ -3267,7 +3267,7 @@
|
||||
"patch": {
|
||||
"security": [
|
||||
{
|
||||
"CoderSessionToken": []
|
||||
"Authorization": []
|
||||
}
|
||||
],
|
||||
"produces": ["application/scim+json"],
|
||||
@@ -14902,6 +14902,11 @@
|
||||
}
|
||||
},
|
||||
"securityDefinitions": {
|
||||
"Authorization": {
|
||||
"type": "apiKey",
|
||||
"name": "Authorizaiton",
|
||||
"in": "header"
|
||||
},
|
||||
"CoderSessionToken": {
|
||||
"type": "apiKey",
|
||||
"name": "Coder-Session-Token",
|
||||
|
||||
Reference in New Issue
Block a user