diff options
author | Unknwon <u@gogs.io> | 2015-12-05 17:39:29 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-12-05 17:39:29 -0500 |
commit | ca8ce793d15b3991eb4766939e9a0a7cf086fa6f (patch) | |
tree | 9460c1e8b16d59d31834a4cda12f821a5372f112 /cmd | |
parent | 978dc00305f1af705ae8900977529bac6fa4c72b (diff) |
#2063 Ability to delete repo from admin panel
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -267,7 +267,8 @@ func runWeb(ctx *cli.Context) { }) m.Group("/repos", func() { - m.Get("", admin.Repositories) + m.Get("", admin.Repos) + m.Post("/delete", admin.DeleteRepo) }) m.Group("/auths", func() { |