|
|
|
@ -382,7 +382,7 @@ func orgAssignment(args ...bool) macaron.Handler {
|
|
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
if assignOrg {
|
|
|
|
|
ctx.Org.Organization, err = models.GetOrgByName(ctx.Params(":orgname"))
|
|
|
|
|
ctx.Org.Organization, err = models.GetOrgByName(ctx.Params(":org"))
|
|
|
|
|
if err != nil {
|
|
|
|
|
if models.IsErrOrgNotExist(err) {
|
|
|
|
|
ctx.NotFound()
|
|
|
|
@ -808,7 +808,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
|
|
|
|
m.Get("/user/orgs", reqToken(), org.ListMyOrgs)
|
|
|
|
|
m.Get("/users/:username/orgs", org.ListUserOrgs)
|
|
|
|
|
m.Post("/orgs", reqToken(), bind(api.CreateOrgOption{}), org.Create)
|
|
|
|
|
m.Group("/orgs/:orgname", func() {
|
|
|
|
|
m.Group("/orgs/:org", func() {
|
|
|
|
|
m.Get("/repos", user.ListOrgRepos)
|
|
|
|
|
m.Combo("").Get(org.Get).
|
|
|
|
|
Patch(reqToken(), reqOrgOwnership(), bind(api.EditOrgOption{}), org.Edit).
|
|
|
|
@ -850,7 +850,7 @@ func RegisterRoutes(m *macaron.Macaron) {
|
|
|
|
|
})
|
|
|
|
|
m.Group("/repos", func() {
|
|
|
|
|
m.Get("", org.GetTeamRepos)
|
|
|
|
|
m.Combo("/:orgname/:reponame").
|
|
|
|
|
m.Combo("/:org/:reponame").
|
|
|
|
|
Put(org.AddTeamRepository).
|
|
|
|
|
Delete(org.RemoveTeamRepository)
|
|
|
|
|
})
|
|
|
|
|