Browse Source

fix #2360

tags/v1.2.0-rc1
Unknwon 10 years ago
parent
commit
4e6f9675e2
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      gogs.go
  2. +1
    -1
      routers/api/v1/api.go
  3. +1
    -1
      templates/.VERSION

+ 1
- 1
gogs.go View File

@@ -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())


+ 1
- 1
routers/api/v1/api.go View File

@@ -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
templates/.VERSION View File

@@ -1 +1 @@
0.8.17.0107
0.8.17.0108

Loading…
Cancel
Save