mirror of
https://github.com/go-gitea/gitea
synced 2025-07-23 02:38:35 +00:00
Merge branch 'dev' of github.com:gogits/gogs into dev
This commit is contained in:
11
routers/org/org.go
Normal file
11
routers/org/org.go
Normal file
@@ -0,0 +1,11 @@
|
||||
package org
|
||||
|
||||
import (
|
||||
"github.com/go-martini/martini"
|
||||
"github.com/gogits/gogs/modules/middleware"
|
||||
)
|
||||
|
||||
func Organization(ctx *middleware.Context, params martini.Params) {
|
||||
ctx.Data["Title"] = "Organization Name" + params["org"]
|
||||
ctx.HTML(200, "org/org")
|
||||
}
|
Reference in New Issue
Block a user