diff options
author | KN4CK3R <admin@oldschoolhack.me> | 2022-08-03 17:22:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-03 11:22:32 -0400 |
commit | 99fc419855b2e06a8e20d06dc68c86937a1ec8f7 (patch) | |
tree | df4662443df21de3d5754d0418f7e5c8d69b723d /routers/api | |
parent | 7a31292c20b057d59889337b7cf7cb419400d6cb (diff) | |
download | gitea-99fc419855b2e06a8e20d06dc68c86937a1ec8f7.tar.gz gitea-99fc419855b2e06a8e20d06dc68c86937a1ec8f7.zip |
Send correct NuGet status codes (#20647)
* Fixed status codes.
* Fixed status codes.
Diffstat (limited to 'routers/api')
-rw-r--r-- | routers/api/packages/nuget/nuget.go | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/routers/api/packages/nuget/nuget.go b/routers/api/packages/nuget/nuget.go index b7667a3222..4d630708b9 100644 --- a/routers/api/packages/nuget/nuget.go +++ b/routers/api/packages/nuget/nuget.go @@ -217,7 +217,7 @@ func UploadPackage(ctx *context.Context) { ) if err != nil { if err == packages_model.ErrDuplicatePackageVersion { - apiError(ctx, http.StatusBadRequest, err) + apiError(ctx, http.StatusConflict, err) return } apiError(ctx, http.StatusInternalServerError, err) @@ -274,7 +274,7 @@ func UploadSymbolPackage(ctx *context.Context) { case packages_model.ErrPackageNotExist: apiError(ctx, http.StatusNotFound, err) case packages_model.ErrDuplicatePackageFile: - apiError(ctx, http.StatusBadRequest, err) + apiError(ctx, http.StatusConflict, err) default: apiError(ctx, http.StatusInternalServerError, err) } @@ -299,7 +299,7 @@ func UploadSymbolPackage(ctx *context.Context) { if err != nil { switch err { case packages_model.ErrDuplicatePackageFile: - apiError(ctx, http.StatusBadRequest, err) + apiError(ctx, http.StatusConflict, err) default: apiError(ctx, http.StatusInternalServerError, err) } @@ -414,4 +414,6 @@ func DeletePackage(ctx *context.Context) { } apiError(ctx, http.StatusInternalServerError, err) } + + ctx.Status(http.StatusNoContent) } |