You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
OneAuth/api/user/role/patch.go

37 lines
827 B
Go

//
// crud.go
// Copyright (C) 2025 veypi <i@veypi.com>
// 2025-05-06 15:12
// Distributed under terms of the MIT license.
//
package role
import (
10 months ago
"github.com/veypi/OneAuth/cfg"
"github.com/veypi/OneAuth/models"
7 months ago
"github.com/vyes-ai/vigo"
)
type patchOpts struct {
ID string `json:"id" src:"path@id" desc:"记录ID"`
Status *string `json:"status" src:"json" desc:"状态"`
}
var _ = Router.Patch("/{id}", "更新用户角色", userRolePatch)
func userRolePatch(x *vigo.X, opts *patchOpts) (*models.UserRole, error) {
10 months ago
data := &models.UserRole{}
err := cfg.DB().Where("id = ?", opts.ID).First(data).Error
if err != nil {
return nil, err
}
optsMap := make(map[string]any)
if opts.Status != nil {
optsMap["status"] = opts.Status
}
err = cfg.DB().Model(data).Updates(optsMap).Error
return data, err
}