mirror of
https://github.com/usememos/memos.git
synced 2025-10-04 03:25:25 +08:00
fix: disable decode patch id (#831)
This commit is contained in:
parent
9f25badde3
commit
dca35bde87
4 changed files with 4 additions and 4 deletions
|
@ -57,7 +57,7 @@ type MemoCreate struct {
|
|||
}
|
||||
|
||||
type MemoPatch struct {
|
||||
ID int
|
||||
ID int `json:"-"`
|
||||
|
||||
// Standard fields
|
||||
CreatedTs *int64 `json:"createdTs"`
|
||||
|
|
|
@ -41,7 +41,7 @@ type ResourceFind struct {
|
|||
}
|
||||
|
||||
type ResourcePatch struct {
|
||||
ID int
|
||||
ID int `json:"-"`
|
||||
|
||||
// Standard fields
|
||||
UpdatedTs *int64
|
||||
|
|
|
@ -24,7 +24,7 @@ type ShortcutCreate struct {
|
|||
}
|
||||
|
||||
type ShortcutPatch struct {
|
||||
ID int
|
||||
ID int `json:"-"`
|
||||
|
||||
// Standard fields
|
||||
UpdatedTs *int64
|
||||
|
|
|
@ -69,7 +69,7 @@ func (create UserCreate) Validate() error {
|
|||
}
|
||||
|
||||
type UserPatch struct {
|
||||
ID int
|
||||
ID int `json:"-"`
|
||||
|
||||
// Standard fields
|
||||
UpdatedTs *int64
|
||||
|
|
Loading…
Add table
Reference in a new issue