Skip to content

Commit

Permalink
fixup! fix(openapi): Regenerate OpenAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Jan 18, 2024
1 parent f8d9679 commit a3495c8
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions apps/systemtags/openapi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{
"openapi": "3.0.3",
"info": {
"title": "systemtags",
"version": "0.0.1",
"description": "Collaborative tagging functionality which shares tags among users.",
"license": {
"name": "agpl"
}
},
"components": {
"securitySchemes": {
"basic_auth": {
"type": "http",
"scheme": "basic"
},
"bearer_auth": {
"type": "http",
"scheme": "bearer"
}
},
"schemas": {
"Capabilities": {
"type": "object",
"required": [
"systemtags"
],
"properties": {
"systemtags": {
"type": "object",
"required": [
"enabled"
],
"properties": {
"enabled": {
"type": "boolean",
"enum": [
true
]
}
}
}
}
}
}
},
"paths": {},
"tags": []
}

0 comments on commit a3495c8

Please sign in to comment.