浏览代码

#1101 Anyone can see organization pages even without logging in when sign in required

Unknwon 10 年之前
父节点
当前提交
27c3c5415f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      cmd/web.go

+ 1 - 1
cmd/web.go

@@ -372,7 +372,7 @@ func runWeb(ctx *cli.Context) {
 	}, reqSignIn)
 	m.Group("/org", func() {
 		m.Get("/:org", org.Home)
-	}, middleware.OrgAssignment(true))
+	}, ignSignIn, middleware.OrgAssignment(true))
 
 	// Repository.
 	m.Group("/repo", func() {