mirror of https://github.com/veypi/OneAuth.git
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.
26 lines
544 B
Go
26 lines
544 B
Go
//
|
|
// Copyright (C) 2024 veypi <i@veypi.com>
|
|
// 2025-03-04 16:08:06
|
|
// Distributed under terms of the MIT license.
|
|
//
|
|
|
|
package policy
|
|
|
|
import (
|
|
"github.com/veypi/vbase/cfg"
|
|
"github.com/veypi/vbase/models"
|
|
"github.com/veypi/vigo"
|
|
)
|
|
|
|
type GetRequest struct {
|
|
PolicyID string `src:"path@policy_id" desc:"策略ID"`
|
|
}
|
|
|
|
func get(x *vigo.X, req *GetRequest) (*models.Policy, error) {
|
|
var policy models.Policy
|
|
if err := cfg.DB().First(&policy, "id = ?", req.PolicyID).Error; err != nil {
|
|
return nil, vigo.ErrNotFound
|
|
}
|
|
return &policy, nil
|
|
}
|