chore: correctly document SCIM authentication (#15234)

This commit is contained in:
Colin Adler
2024-10-25 12:40:13 -05:00
committed by GitHub
parent 900e2cd39c
commit 27f5ff2dd1
5 changed files with 30 additions and 16 deletions

13
coderd/apidoc/docs.go generated
View File

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