0
0
mirror of https://github.com/go-gitea/gitea.git synced 2025-12-19 06:31:23 +01:00

Fix OrgAssignment opts (#36174)

Fix #36084
This commit is contained in:
wxiaoguang 2025-12-17 17:19:22 +08:00 committed by GitHub
parent 0e916c67cc
commit eaa47c3e09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,8 +70,9 @@ type OrgAssignmentOptions struct {
} }
// OrgAssignment returns a middleware to handle organization assignment // OrgAssignment returns a middleware to handle organization assignment
func OrgAssignment(opts OrgAssignmentOptions) func(ctx *Context) { func OrgAssignment(orgAssignmentOpts OrgAssignmentOptions) func(ctx *Context) {
return func(ctx *Context) { return func(ctx *Context) {
opts := orgAssignmentOpts // it must be a copy, because the values will be changed
var err error var err error
if ctx.ContextUser == nil { if ctx.ContextUser == nil {
// if Organization is not defined, get it from params // if Organization is not defined, get it from params