mirror of
https://github.com/go-gitea/gitea
synced 2024-11-07 09:15:53 +01:00
fix #2360
This commit is contained in:
parent
e0f0f72a36
commit
03427fb005
2
gogs.go
2
gogs.go
@ -17,7 +17,7 @@ import (
|
||||
"github.com/gogits/gogs/modules/setting"
|
||||
)
|
||||
|
||||
const APP_VER = "0.8.17.0107"
|
||||
const APP_VER = "0.8.17.0108"
|
||||
|
||||
func init() {
|
||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||
|
@ -209,7 +209,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
||||
m.Group("/:username", func() {
|
||||
m.Combo("").Patch(bind(api.EditUserOption{}), admin.EditUser).
|
||||
Delete(admin.DeleteUser)
|
||||
m.Post("/keys", admin.CreatePublicKey)
|
||||
m.Post("/keys", bind(api.CreateKeyOption{}), admin.CreatePublicKey)
|
||||
m.Post("/orgs", bind(api.CreateOrgOption{}), admin.CreateOrg)
|
||||
m.Post("/repos", bind(api.CreateRepoOption{}), admin.CreateRepo)
|
||||
})
|
||||
|
@ -1 +1 @@
|
||||
0.8.17.0107
|
||||
0.8.17.0108
|
Loading…
Reference in New Issue
Block a user