mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-10 20:16:20 +01:00
16 lines
414 B
Go
16 lines
414 B
Go
package org
|
|
|
|
import (
|
|
"github.com/go-martini/martini"
|
|
"github.com/gogits/gogs/modules/middleware"
|
|
)
|
|
|
|
func Teams(ctx *middleware.Context, params martini.Params) {
|
|
ctx.Data["Title"] = "Organization "+params["org"]+" Teams"
|
|
ctx.HTML(200, "org/teams")
|
|
}
|
|
|
|
func NewTeam(ctx *middleware.Context, params martini.Params) {
|
|
ctx.Data["Title"] = "Organization "+params["org"]+" New Team"
|
|
ctx.HTML(200, "org/new_team")
|
|
}
|