Browse Source

missing tag create

master
Pascal Gloor 5 years ago
parent
commit
82517ce9e5
1 changed files with 26 additions and 0 deletions
  1. 26
    0
      etc/openapi.json

+ 26
- 0
etc/openapi.json View File

@@ -219,6 +219,32 @@
}
}
}
},
"post": {
"description": "Create a new tag",
"parameters": [
{
"name": "tagName",
"in":"query",
"required": true,
"schema": {
"type": "string"
}
},
{
"name": "tagColor",
"in": "query",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "OK"
}
}
}
},
"/tags/{tagId}": {

Loading…
Cancel
Save