Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -927,7 +927,8 @@
},
"api": {
"playground": {
"display": "simple"
"display": "interactive",
"proxy": false
}
},
"appearance": {
Expand Down
18 changes: 16 additions & 2 deletions docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,22 @@
},
"servers": [
{
"url": "/",
"description": "This is the base path for all endpoints, relative to the domain where the API is being hosted."
"url": "{protocol}://{ApiServer}/",
"description": "URL structure for BloodHound deployments",
"variables": {
"ApiServer": {
"description": "This is just a default value. Replace it with your BloodHound server.",
"default": "tenant.bloodhoundenterprise.io"
},
"protocol": {
"description": "The protocol used to access the BloodHound API.",
"default": "https",
"enum": [
"https",
"http"
]
}
}
}
],
"security": [
Expand Down