aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-12-05 01:09:14 -0500
committerUnknwon <u@gogs.io>2015-12-05 01:09:14 -0500
commitf41360d864bfa3fb850d669a0a8321820fc550de (patch)
tree5450285739bd0be98258474f45d62991dd1429ee /cmd
parente82ee40e9e667797099edc05ec1b774f65310464 (diff)
downloadgitea-f41360d864bfa3fb850d669a0a8321820fc550de.tar.gz
gitea-f41360d864bfa3fb850d669a0a8321820fc550de.zip
#2052 advanced select ops for system notices
Diffstat (limited to 'cmd')
-rw-r--r--cmd/web.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 29f6a0f8b7..9efc07b3fb 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -280,7 +280,7 @@ func runWeb(ctx *cli.Context) {
m.Group("/notices", func() {
m.Get("", admin.Notices)
- m.Get("/:id:int/delete", admin.DeleteNotice)
+ m.Post("/delete", admin.DeleteNotices)
m.Get("/empty", admin.EmptyNotices)
})
}, adminReq)