1
0

Change all json fields to snake_case

This commit is contained in:
kolaente
2020-04-12 22:48:46 +02:00
parent 0bfb3a4709
commit fb8ac92abf
5 changed files with 14 additions and 14 deletions

View File

@ -26,7 +26,7 @@ type TeamList struct {
// The unique, numeric id of this list <-> team relation.
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id"`
// The team id.
TeamID int64 `xorm:"int(11) not null INDEX" json:"teamID" param:"team"`
TeamID int64 `xorm:"int(11) not null INDEX" json:"team_id" param:"team"`
// The list id.
ListID int64 `xorm:"int(11) not null INDEX" json:"-" param:"list"`
// The right this team has. 0 = Read only, 1 = Read & Write, 2 = Admin. See the docs for more details.