#2052 Ability to batch delete system notices

This commit is contained in:
Unknwon
2015-12-01 23:33:08 -05:00
parent 834d38a8fb
commit 0be8b1b1a1
9 changed files with 32 additions and 6 deletions

View File

@ -338,6 +338,7 @@ func runWeb(ctx *cli.Context) {
m.Group("/notices", func() {
m.Get("", admin.Notices)
m.Get("/:id:int/delete", admin.DeleteNotice)
m.Get("/empty", admin.EmptyNotices)
})
}, adminReq)
// ***** END: Admin *****