From ee2d840075ab2796e04f845ae7a210fd3c8300f5 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Wed, 27 May 2020 14:02:34 +0200 Subject: [PATCH] added /notes/{note}/websocket --- docs/dev/openapi.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/dev/openapi.yml b/docs/dev/openapi.yml index 8ac1e677a..ad85f4c4c 100644 --- a/docs/dev/openapi.yml +++ b/docs/dev/openapi.yml @@ -239,6 +239,24 @@ paths: content: text/plain: example: my-note + /notes/{note}/websocket: + get: + tags: + - note + summary: Returns the websocket of a note. + operationId: getNoteWebsocket + responses: + 200: + description: The websocket of the note + content: {} + parameters: + - name: note + in: path + required: true + description: The note for which the markdown should be exported + content: + text/plain: + example: my-note /notes/{note}/export/markdown: get: tags: