| @@ -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}": { | |||