mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
Fixed Typos, removed unnecessary type: object
and fixed copy paste errors in descriptions Signed-off-by: Yannick Bungers <git@innay.de>
This commit is contained in:
parent
ea82479050
commit
fb29ab85bd
1 changed files with 7 additions and 11 deletions
|
@ -116,7 +116,7 @@ paths:
|
|||
operationId: deleteHistoryObject
|
||||
responses:
|
||||
'204':
|
||||
"$ref": "#/components/responses/SuccesfullyDeleted"
|
||||
"$ref": "#/components/responses/SuccessfullyDeleted"
|
||||
'401':
|
||||
"$ref": "#/components/responses/UnauthorizedError"
|
||||
'404':
|
||||
|
@ -203,7 +203,7 @@ paths:
|
|||
- name: note
|
||||
in: path
|
||||
required: true
|
||||
description: The note for which the info should be shown.
|
||||
description: The name of the note which is used to address it.
|
||||
content:
|
||||
text/plain:
|
||||
example: my-note
|
||||
|
@ -240,7 +240,7 @@ paths:
|
|||
- name: note
|
||||
in: path
|
||||
required: true
|
||||
description: The note for which the info should be shown.
|
||||
description: The name of the note which is used to address it.
|
||||
content:
|
||||
text/plain:
|
||||
example: my-note
|
||||
|
@ -251,7 +251,7 @@ paths:
|
|||
operationId: deleteNote
|
||||
responses:
|
||||
'204':
|
||||
"$ref": "#/components/responses/SuccesfullyDeleted"
|
||||
"$ref": "#/components/responses/SuccessfullyDeleted"
|
||||
'401':
|
||||
"$ref": "#/components/responses/UnauthorizedError"
|
||||
'403':
|
||||
|
@ -516,7 +516,6 @@ components:
|
|||
properties:
|
||||
userName:
|
||||
type: string
|
||||
format: UUIDv4
|
||||
displayName:
|
||||
type: string
|
||||
photo:
|
||||
|
@ -638,7 +637,6 @@ components:
|
|||
type: string
|
||||
description: The markdown content of the note
|
||||
metadata:
|
||||
type: object
|
||||
$ref: "#/components/schemas/NoteMetadata"
|
||||
editedByAtPosition:
|
||||
type: array
|
||||
|
@ -690,7 +688,6 @@ components:
|
|||
items:
|
||||
type: string
|
||||
permissions:
|
||||
type: object
|
||||
$ref: "#/components/schemas/NotePermissions"
|
||||
NotePermissions:
|
||||
type: object
|
||||
|
@ -828,7 +825,6 @@ components:
|
|||
type: object
|
||||
properties:
|
||||
metadata:
|
||||
type: object
|
||||
$ref: "#/components/schemas/NoteMetadata"
|
||||
pinned:
|
||||
type: boolean
|
||||
|
@ -856,5 +852,5 @@ components:
|
|||
description: Access to the requested resource is not permitted.
|
||||
NotFoundError:
|
||||
description: The requested resource was not found.
|
||||
SuccesfullyDeleted:
|
||||
SuccessfullyDeleted:
|
||||
description: The requested resource was sucessfully deleted.
|
||||
|
|
Loading…
Reference in a new issue