You've already forked golang-saas-starter-kit
mirror of
https://github.com/raseels-repos/golang-saas-starter-kit.git
synced 2025-08-08 22:36:41 +02:00
fix where, auth use request arg
This commit is contained in:
@ -170,7 +170,7 @@ type AccountDeleteRequest struct {
|
||||
// AccountFindRequest defines the possible options to search for accounts. By default
|
||||
// archived accounts will be excluded from response.
|
||||
type AccountFindRequest struct {
|
||||
Where *string `json:"where" example:"name = ? and status = ?"`
|
||||
Where string `json:"where" example:"name = ? and status = ?"`
|
||||
Args []interface{} `json:"args" swaggertype:"array,string" example:"Company Name,active"`
|
||||
Order []string `json:"order" example:"created_at desc"`
|
||||
Limit *uint `json:"limit" example:"10"`
|
||||
|
Reference in New Issue
Block a user