0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-02-13 17:48:33 -05:00

chore(api): Improve description for repoCheckCollaborator (#6858)

- Make it clear how the API responds with if the user is a collaborator or not.
- Yes, not ideal. Should've been a JSON response instead - but backwards compatibility.
- Resolves forgejo/forgejo#6837

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/6858
Reviewed-by: Earl Warren <earl-warren@noreply.codeberg.org>
Co-authored-by: Gusted <postmaster@gusted.xyz>
Co-committed-by: Gusted <postmaster@gusted.xyz>
This commit is contained in:
Gusted 2025-02-08 15:08:57 +00:00 committed by Gusted
parent 816cd117f7
commit ed855e1492
2 changed files with 2 additions and 0 deletions

View file

@ -82,6 +82,7 @@ func IsCollaborator(ctx *context.APIContext) {
// swagger:operation GET /repos/{owner}/{repo}/collaborators/{collaborator} repository repoCheckCollaborator
// ---
// summary: Check if a user is a collaborator of a repository
// description: If the user is a collaborator, return 204. If the user is not a collaborator, return 404.
// produces:
// - application/json
// parameters:

View file

@ -6074,6 +6074,7 @@
},
"/repos/{owner}/{repo}/collaborators/{collaborator}": {
"get": {
"description": "If the user is a collaborator, return 204. If the user is not a collaborator, return 404.",
"produces": [
"application/json"
],