summaryrefslogtreecommitdiffstats
path: root/routers/org/teams.go
diff options
context:
space:
mode:
Diffstat (limited to 'routers/org/teams.go')
-rw-r--r--routers/org/teams.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/routers/org/teams.go b/routers/org/teams.go
index 9585cb272e..9ca5185a94 100644
--- a/routers/org/teams.go
+++ b/routers/org/teams.go
@@ -14,3 +14,8 @@ func NewTeam(ctx *middleware.Context, params martini.Params) {
ctx.Data["Title"] = "Organization "+params["org"]+" New Team"
ctx.HTML(200, "org/new_team")
}
+
+func EditTeam(ctx *middleware.Context, params martini.Params){
+ ctx.Data["Title"] = "Organization "+params["org"]+" Edit Team"
+ ctx.HTML(200,"org/edit_team")
+}