From d345839634f1c7fe6765125950f789e51000c129 Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Thu, 11 Jun 2026 23:20:46 +0300 Subject: [PATCH] docs(project): document the pool view endpoint Co-Authored-By: Claude Opus 4.8 --- openapi.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/openapi.yaml b/openapi.yaml index 9fcebd4..6131772 100644 --- a/openapi.yaml +++ b/openapi.yaml @@ -1151,6 +1151,18 @@ paths: '204': description: Pool deleted + /pools/{pool_id}/views: + post: + tags: [Pools] + summary: Record that the current user viewed the pool + parameters: + - $ref: '#/components/parameters/pool_id' + responses: + '204': + description: View recorded + '404': + $ref: '#/components/responses/NotFound' + /pools/{pool_id}/files: get: tags: [Pools, Files]