From ce040a88bbab91c240fbada1e1191174f2df1e2e Mon Sep 17 00:00:00 2001 From: Marcus Pasell <3690498+rickyrombo@users.noreply.github.com> Date: Tue, 17 Mar 2026 16:26:30 -0700 Subject: [PATCH] feat(me): move /me to users tag with getMe() operationId - Changes /me endpoint tag from `oauth` to `users` so it groups with other user endpoints - Updates operationId to "Get Me" so OpenAPI generator produces usersApi.getMe() Co-Authored-By: Claude Sonnet 4.6 --- api/swagger/swagger-v1.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/swagger/swagger-v1.yaml b/api/swagger/swagger-v1.yaml index 47dc08c7..85a8625f 100644 --- a/api/swagger/swagger-v1.yaml +++ b/api/swagger/swagger-v1.yaml @@ -9805,10 +9805,10 @@ paths: /me: get: tags: - - oauth + - users summary: Get authenticated user description: Returns the full profile of the currently authenticated user based on the Bearer access token obtained via OAuth. - operationId: Get Authenticated User + operationId: Get Me security: - OAuth2: - read