summaryrefslogtreecommitdiffstats
path: root/modules/structs
diff options
context:
space:
mode:
authorEarl Warren <109468362+earl-warren@users.noreply.github.com>2023-08-24 12:36:10 +0200
committerGitHub <noreply@github.com>2023-08-24 10:36:10 +0000
commita9ce570298d4541bc1b5598dc080d9e4541de17b (patch)
tree41be5a2f94a0582c4d56a1ede7a7d57b820b91c8 /modules/structs
parentb21b63c61ac1038a1597acee45084896f5e39a3a (diff)
downloadgitea-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 'modules/structs')
-rw-r--r--modules/structs/release.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/structs/release.go b/modules/structs/release.go
index 3fe40389b1..c7378645c2 100644
--- a/modules/structs/release.go
+++ b/modules/structs/release.go
@@ -18,6 +18,7 @@ type Release struct {
HTMLURL string `json:"html_url"`
TarURL string `json:"tarball_url"`
ZipURL string `json:"zipball_url"`
+ UploadURL string `json:"upload_url"`
IsDraft bool `json:"draft"`
IsPrerelease bool `json:"prerelease"`
// swagger:strfmt date-time