diff options
author | Unknwon <u@gogs.io> | 2016-07-17 08:33:59 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-07-17 08:33:59 +0800 |
commit | 60110adc06ef85e533f48a52a744d43c63a818bc (patch) | |
tree | 722f5adcf7a2269563f0e9c2ed415449a607cbfb /routers/api | |
parent | 5ff2dfb23eb4f5c436d69cc86945192eb4b3d279 (diff) | |
download | gitea-60110adc06ef85e533f48a52a744d43c63a818bc.tar.gz gitea-60110adc06ef85e533f48a52a744d43c63a818bc.zip |
models/webhook: restrict deletion to be explicitly with repo and org ID
Diffstat (limited to 'routers/api')
-rw-r--r-- | routers/api/v1/repo/hook.go | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/routers/api/v1/repo/hook.go b/routers/api/v1/repo/hook.go index 4cda05c8b8..2811a4d29e 100644 --- a/routers/api/v1/repo/hook.go +++ b/routers/api/v1/repo/hook.go @@ -96,15 +96,6 @@ func CreateHook(ctx *context.APIContext, form api.CreateHookOption) { ctx.JSON(201, convert.ToHook(ctx.Repo.RepoLink, w)) } -func DeleteHook(ctx *context.APIContext) { - if err := models.DeleteWebhook(ctx.ParamsInt64(":id")); err != nil { - ctx.Error(500, "DeleteWebhook", err) - return - } - - ctx.Status(204) -} - // https://github.com/gogits/go-gogs-client/wiki/Repositories#edit-a-hook func EditHook(ctx *context.APIContext, form api.EditHookOption) { w, err := models.GetWebhookByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")) @@ -171,3 +162,12 @@ func EditHook(ctx *context.APIContext, form api.EditHookOption) { ctx.JSON(200, convert.ToHook(ctx.Repo.RepoLink, w)) } + +func DeleteHook(ctx *context.APIContext) { + if err := models.DeleteWebhookByRepoID(ctx.Repo.Repository.ID, ctx.ParamsInt64(":id")); err != nil { + ctx.Error(500, "DeleteWebhookByRepoID", err) + return + } + + ctx.Status(204) +} |