Skip to content

Commit

Permalink
Update spec/rails/doc/openapi.json
Browse files Browse the repository at this point in the history
  • Loading branch information
ipepe committed Jan 8, 2024
1 parent 767c86c commit ac506cb
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions spec/rails/doc/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,32 @@
}
}
},
"/secret_items": {
"get": {
"summary": "index",
"tags": [
"SecretItem"
],
"security": [
{
"SecretApiKeyAuth": []
}
],
"responses": {
"401": {
"description": "authorizes with secret key",
"content": {
"text/html": {
"schema": {
"type": "string"
},
"example": ""
}
}
}
}
}
},
"/tables": {
"get": {
"summary": "index",
Expand Down Expand Up @@ -1035,5 +1061,14 @@
}
}
}
},
"components": {
"securitySchemes": {
"SecretApiKeyAuth": {
"type": "apiKey",
"in": "header",
"name": "Secret-Key"
}
}
}
}

0 comments on commit ac506cb

Please sign in to comment.