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

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