From 66b1bc38d554fab932b4929255eb04dcafea545e Mon Sep 17 00:00:00 2001 From: alex Date: Mon, 6 Feb 2023 00:20:21 +0100 Subject: [PATCH] updated swagger docs --- routers/api/v1/wssessions/wssessions.go | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/routers/api/v1/wssessions/wssessions.go b/routers/api/v1/wssessions/wssessions.go index 68e240d..4b46a63 100644 --- a/routers/api/v1/wssessions/wssessions.go +++ b/routers/api/v1/wssessions/wssessions.go @@ -11,10 +11,6 @@ func AddUserWebSocketSession(c *fiber.Ctx) error { // swagger:operation POST /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsAddUserWebSocketSession // --- // summary: Add user websocket session - // consumes: - // - application/json - // produces: - // - application/json // parameters: // - name: X-Ms-Api // in: header @@ -53,8 +49,6 @@ func ExistsUserWebSocketSession(c *fiber.Ctx) error { // swagger:operation GET /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsExistsUserWebSocketSession // --- // summary: Returns whether the user websocket session already exists - // consumes: - // - application/json // produces: // - application/json // parameters: @@ -72,8 +66,6 @@ func GetUserWebSocketSessions(c *fiber.Ctx) error { // swagger:operation GET /wsconnections/:userId wsconnections wsconnectionsGetUserWebSocketSessions // --- // summary: List of all websocket sessions of the user that are connected - // consumes: - // - application/json // produces: // - application/json // parameters: @@ -99,10 +91,6 @@ func RemoveConnection(c *fiber.Ctx) error { // swagger:operation DELETE /wsconnections/:userId/:webSocketSession wsconnections wsconnectionsRemoveConnection // --- // summary: Deletes a websocket session from the user - // consumes: - // - application/json - // produces: - // - application/json // parameters: // - name: X-Ms-Api // in: header