mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
chore: correctly document SCIM authentication (#15234)
This commit is contained in:
13
coderd/apidoc/docs.go
generated
13
coderd/apidoc/docs.go
generated
@ -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",
|
||||
|
Reference in New Issue
Block a user