@@ -52,7 +52,7 @@ func GetReleaseAttachment(ctx *context.APIContext) {
52
52
// "$ref": "#/responses/Attachment"
53
53
54
54
releaseID := ctx .ParamsInt64 (":id" )
55
- attachID := ctx .ParamsInt64 (":asset " )
55
+ attachID := ctx .ParamsInt64 (":attachment_id " )
56
56
attach , err := repo_model .GetAttachmentByID (ctx , attachID )
57
57
if err != nil {
58
58
if repo_model .IsErrAttachmentNotExist (err ) {
@@ -68,7 +68,7 @@ func GetReleaseAttachment(ctx *context.APIContext) {
68
68
return
69
69
}
70
70
// FIXME Should prove the existence of the given repo, but results in unnecessary database requests
71
- ctx .JSON (http .StatusOK , convert .ToAttachment ( attach ))
71
+ ctx .JSON (http .StatusOK , convert .ToAPIAttachment ( ctx . Repo . Repository , attach ))
72
72
}
73
73
74
74
// ListReleaseAttachments lists all attachments of the release
@@ -117,7 +117,7 @@ func ListReleaseAttachments(ctx *context.APIContext) {
117
117
ctx .Error (http .StatusInternalServerError , "LoadAttributes" , err )
118
118
return
119
119
}
120
- ctx .JSON (http .StatusOK , convert .ToRelease (ctx , release ).Attachments )
120
+ ctx .JSON (http .StatusOK , convert .ToAPIRelease (ctx , ctx . Repo . Repository , release ).Attachments )
121
121
}
122
122
123
123
// CreateReleaseAttachment creates an attachment and saves the given file
@@ -209,7 +209,7 @@ func CreateReleaseAttachment(ctx *context.APIContext) {
209
209
return
210
210
}
211
211
212
- ctx .JSON (http .StatusCreated , convert .ToAttachment ( attach ))
212
+ ctx .JSON (http .StatusCreated , convert .ToAPIAttachment ( ctx . Repo . Repository , attach ))
213
213
}
214
214
215
215
// EditReleaseAttachment updates the given attachment
@@ -256,7 +256,7 @@ func EditReleaseAttachment(ctx *context.APIContext) {
256
256
257
257
// Check if release exists an load release
258
258
releaseID := ctx .ParamsInt64 (":id" )
259
- attachID := ctx .ParamsInt64 (":asset " )
259
+ attachID := ctx .ParamsInt64 (":attachment_id " )
260
260
attach , err := repo_model .GetAttachmentByID (ctx , attachID )
261
261
if err != nil {
262
262
if repo_model .IsErrAttachmentNotExist (err ) {
@@ -279,7 +279,7 @@ func EditReleaseAttachment(ctx *context.APIContext) {
279
279
if err := repo_model .UpdateAttachment (ctx , attach ); err != nil {
280
280
ctx .Error (http .StatusInternalServerError , "UpdateAttachment" , attach )
281
281
}
282
- ctx .JSON (http .StatusCreated , convert .ToAttachment ( attach ))
282
+ ctx .JSON (http .StatusCreated , convert .ToAPIAttachment ( ctx . Repo . Repository , attach ))
283
283
}
284
284
285
285
// DeleteReleaseAttachment delete a given attachment
@@ -318,7 +318,7 @@ func DeleteReleaseAttachment(ctx *context.APIContext) {
318
318
319
319
// Check if release exists an load release
320
320
releaseID := ctx .ParamsInt64 (":id" )
321
- attachID := ctx .ParamsInt64 (":asset " )
321
+ attachID := ctx .ParamsInt64 (":attachment_id " )
322
322
attach , err := repo_model .GetAttachmentByID (ctx , attachID )
323
323
if err != nil {
324
324
if repo_model .IsErrAttachmentNotExist (err ) {
0 commit comments