Skip to content

Commit

Permalink
feat: remove body in record
Browse files Browse the repository at this point in the history
  • Loading branch information
hsluoyz committed Mar 16, 2024
1 parent 22613a4 commit 45eee66
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions casvisorsdk/record.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ type Record struct {
RequestUri string `xorm:"varchar(1000)" json:"requestUri"`
Action string `xorm:"varchar(1000)" json:"action"`
Language string `xorm:"varchar(100)" json:"language"`
Body string `xorm:"mediumtext" json:"body"`
Response string `xorm:"mediumtext" json:"response"`

Object string `xorm:"-" json:"object"`
Object string `xorm:"mediumtext" json:"object"`
Response string `xorm:"mediumtext" json:"response"`

// ExtendedUser *User `xorm:"-" json:"extendedUser"`

IsTriggered bool `json:"isTriggered"`
Expand Down

0 comments on commit 45eee66

Please sign in to comment.