1
0

make validation less verbose (#23)

This commit is contained in:
konrad
2018-11-24 12:44:40 +00:00
committed by Gitea
parent fded3c23d0
commit d51ed8defd
9 changed files with 22 additions and 22 deletions

View File

@ -23,8 +23,8 @@ type User struct {
PasswordResetToken string `xorm:"varchar(450)" json:"-"`
EmailConfirmToken string `xorm:"varchar(450)" json:"-"`
Created int64 `xorm:"created" json:"created" valid:"range(0|0)"`
Updated int64 `xorm:"updated" json:"updated" valid:"range(0|0)"`
Created int64 `xorm:"created" json:"created"`
Updated int64 `xorm:"updated" json:"updated"`
}
// TableName returns the table name for users