diff options
author | Earl Warren <109468362+earl-warren@users.noreply.github.com> | 2023-08-24 12:36:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-24 10:36:10 +0000 |
commit | a9ce570298d4541bc1b5598dc080d9e4541de17b (patch) | |
tree | 41be5a2f94a0582c4d56a1ede7a7d57b820b91c8 /templates | |
parent | b21b63c61ac1038a1597acee45084896f5e39a3a (diff) | |
download | gitea-a9ce570298d4541bc1b5598dc080d9e4541de17b.tar.gz gitea-a9ce570298d4541bc1b5598dc080d9e4541de17b.zip |
add Upload URL to release API (#26663)
- Resolves https://codeberg.org/forgejo/forgejo/issues/580
- Return a `upload_field` to any release API response, which points to
the API URL for uploading new assets.
- Adds unit test.
- Adds integration testing to verify URL is returned correctly and that
upload endpoint actually works
---------
Co-authored-by: Gusted <postmaster@gusted.xyz>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/swagger/v1_json.tmpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/swagger/v1_json.tmpl b/templates/swagger/v1_json.tmpl index aff4490899..ca4e1c4606 100644 --- a/templates/swagger/v1_json.tmpl +++ b/templates/swagger/v1_json.tmpl @@ -21090,6 +21090,10 @@ "type": "string", "x-go-name": "Target" }, + "upload_url": { + "type": "string", + "x-go-name": "UploadURL" + }, "url": { "type": "string", "x-go-name": "URL" |