diff options
author | 6543 <6543@obermui.de> | 2022-04-21 17:17:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-21 17:17:57 +0200 |
commit | c764355676eb6d67674d095f92576a85688fe6cb (patch) | |
tree | a72d604c29b704744a8e5bac38b4fa47afa430c5 /templates | |
parent | 225044e6563e4ed2b41d1aed8b3967755c064fbb (diff) | |
download | gitea-c764355676eb6d67674d095f92576a85688fe6cb.tar.gz gitea-c764355676eb6d67674d095f92576a85688fe6cb.zip |
RepoAssignment ensure to close before overwrite (#19449)
* check if GitRepo already open and close if
* only run RepoAssignment once
* refactor context helper for api to open GitRepo
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index de74fd8fa3..0374a53a65 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -3668,6 +3668,12 @@ "name": "filepath", "in": "path", "required": true + }, + { + "type": "string", + "description": "The name of the commit/branch/tag. Default the repository’s default branch (usually master)", + "name": "ref", + "in": "query" } ], "responses": { @@ -4559,6 +4565,12 @@ "name": "id", "in": "path", "required": true + }, + { + "type": "string", + "description": "The name of the commit/branch/tag. Default the repository’s default branch (usually master)", + "name": "ref", + "in": "query" } ], "responses": { |