Public API: Simplify PUT /me/history/{note}

Previously, one had to send a complete `NoteMetadata` object when updating the pinned status of a note. A new `HistoryUpdateObject` type was introduced, that only contains the pinned status boolean.

Signed-off-by: David Mehren <git@herrmehren.de>
Co-authored-by: Yannick Bungers <git@innay.de>
This commit is contained in:
David Mehren 2020-10-03 12:49:50 +02:00
parent 2be1defd7a
commit b63593aa8b
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -88,7 +88,7 @@ paths:
content:
application/json:
schema:
"$ref": "#/components/schemas/HistoryObject"
"$ref": "#/components/schemas/HistoryUpdateObject"
responses:
'200':
description: The new history.
@ -908,6 +908,12 @@ components:
pinned:
type: boolean
description: Whether the user has pinned this note.
HistoryUpdateObject:
type: object
properties:
pinned:
type: boolean
description: Whether the user has pinned this note.
History:
type: object
properties: