diff options
author | Richard Mahn <richmahn@users.noreply.github.com> | 2019-08-26 15:52:04 -0400 |
---|---|---|
committer | Antoine GIRARD <sapk@users.noreply.github.com> | 2019-08-26 21:52:04 +0200 |
commit | bb5f7cdae6276a2e48f106c3cf84ab7d2de74aa4 (patch) | |
tree | d97708c6659444f2425f7b584fa5c09cde1d5d2f /templates | |
parent | 954fe0e4e0ab61516f200a171cf9a3bfb49c8906 (diff) | |
download | gitea-bb5f7cdae6276a2e48f106c3cf84ab7d2de74aa4.tar.gz gitea-bb5f7cdae6276a2e48f106c3cf84ab7d2de74aa4.zip |
Adds details about what tags can use the Git tags API (#7989)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index 2e4af809e8..8d164cd7e3 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -2166,7 +2166,7 @@ "tags": [ "repository" ], - "summary": "Gets the tag of a repository.", + "summary": "Gets the tag object of an annotated tag (not lightweight tags)", "operationId": "GetTag", "parameters": [ { @@ -2185,7 +2185,7 @@ }, { "type": "string", - "description": "sha of the tag", + "description": "sha of the tag. The Git tags API only supports annotated tag objects, not lightweight tags.", "name": "sha", "in": "path", "required": true |