From b2c7ddde19c96d438db841d6d0f19ad0dcf55416 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 28 Oct 2025 09:28:05 +0800 Subject: [PATCH] Add new endpoint for file content retrieval - Introduced a new API endpoint `GET /file/:uploaderID/:fileID/content` to facilitate the retrieval of file content based on uploader ID and file ID. - This addition enhances the user capabilities for accessing file data within the application. --- openapi/user/user.go | 1 + 1 file changed, 1 insertion(+) diff --git a/openapi/user/user.go b/openapi/user/user.go index 28b74816..0f95d3c8 100644 --- a/openapi/user/user.go +++ b/openapi/user/user.go @@ -30,6 +30,7 @@ func init() { Endpoints: []string{ "POST /user/teams/select", "GET /user/teams/config", + "GET /file/:uploaderID/:fileID/content", }, }, // Invite verification scope - allows users to accept team invitations