mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 18:28:37 +00:00
Huge updates!!!!! Be careful to merge!!!!
This commit is contained in:
@@ -5,12 +5,10 @@
|
||||
package org
|
||||
|
||||
import (
|
||||
"github.com/go-martini/martini"
|
||||
|
||||
"github.com/gogits/gogs/modules/middleware"
|
||||
)
|
||||
|
||||
func Members(ctx *middleware.Context, params martini.Params) {
|
||||
ctx.Data["Title"] = "Organization " + params["org"] + " Members"
|
||||
func Members(ctx *middleware.Context) {
|
||||
ctx.Data["Title"] = "Organization " + ctx.Params(":org") + " Members"
|
||||
ctx.HTML(200, "org/members")
|
||||
}
|
||||
|
Reference in New Issue
Block a user