mirror of https://github.com/go-sonic/sonic.git
feat: add manage apis for ApplicationPassword
parent
013b939ac7
commit
8cdafbcd4d
@ -1,5 +1,12 @@
|
|||||||
package param
|
package param
|
||||||
|
|
||||||
type TagListParam struct {
|
type TagListParam struct {
|
||||||
Search string `json:"search"`
|
Search string `form:"search" json:"search"`
|
||||||
|
}
|
||||||
|
|
||||||
|
type TagCreateParam struct {
|
||||||
|
Description string `json:"description"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
Slug string `json:"slug"`
|
||||||
|
Meta map[string]interface{} `json:"meta"`
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue