Allow to remove tags from multiple items

This commit is contained in:
Eike Kettner
2020-10-31 12:03:05 +01:00
parent 51c55f64b9
commit f4c79c72ae
3 changed files with 64 additions and 0 deletions

View File

@ -1945,6 +1945,29 @@ paths:
application/json:
schema:
$ref: "#/components/schemas/BasicResult"
/sec/items/tagsremove:
post:
tags:
- Item (Multi Edit)
summary: Remove tags from multiple items
description: |
Remove the given tags from all given items.
security:
- authTokenHeader: []
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/ItemsAndRefs"
responses:
200:
description: Ok
content:
application/json:
schema:
$ref: "#/components/schemas/BasicResult"
put:
tags:
- Item (Multi Edit)