|
|
@@ -0,0 +1,26 @@
|
|
|
+operationId: gameGetMany
|
|
|
+summary: Get Many
|
|
|
+security:
|
|
|
+ - UserAuth: [tokens]
|
|
|
+description: Retrieve a list of games for the logged in user
|
|
|
+tags: [Game]
|
|
|
+
|
|
|
+responses:
|
|
|
+ "200":
|
|
|
+ description: Games retrieved
|
|
|
+ content:
|
|
|
+ application/json:
|
|
|
+ schema:
|
|
|
+ type: array
|
|
|
+ items:
|
|
|
+ $ref: "#/components/schemas/Game"
|
|
|
+ "400":
|
|
|
+ $ref: "#/components/responses/400"
|
|
|
+ "401":
|
|
|
+ $ref: "#/components/responses/401"
|
|
|
+ "403":
|
|
|
+ $ref: "#/components/responses/403"
|
|
|
+ "404":
|
|
|
+ $ref: "#/components/responses/404"
|
|
|
+ "500":
|
|
|
+ $ref: "#/components/responses/500"
|