2018-08-30 08:58:09 +02:00
|
|
|
package models
|
|
|
|
|
|
|
|
// ListUser represents a list <-> user relation
|
|
|
|
type ListUser struct {
|
|
|
|
ID int64 `xorm:"int(11) autoincr not null unique pk" json:"id" param:"namespace"`
|
2018-10-05 18:46:01 +02:00
|
|
|
UserID int64 `xorm:"int(11) not null INDEX" json:"user_id" param:"user"`
|
|
|
|
ListID int64 `xorm:"int(11) not null INDEX" json:"list_id" param:"list"`
|
2018-11-17 00:17:37 +01:00
|
|
|
Right UserRight `xorm:"int(11) INDEX" json:"right" valid:"length(0|2)"`
|
2018-08-30 08:58:09 +02:00
|
|
|
|
2018-11-17 00:17:37 +01:00
|
|
|
Created int64 `xorm:"created" json:"created" valid:"range(0|0)"`
|
|
|
|
Updated int64 `xorm:"updated" json:"updated" valid:"range(0|0)"`
|
2018-08-30 08:58:09 +02:00
|
|
|
|
|
|
|
CRUDable `xorm:"-" json:"-"`
|
|
|
|
Rights `xorm:"-" json:"-"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// TableName is the table name for ListUser
|
|
|
|
func (ListUser) TableName() string {
|
|
|
|
return "users_list"
|
|
|
|
}
|
2018-09-17 19:39:14 +02:00
|
|
|
|
2018-11-12 16:46:35 +01:00
|
|
|
// UserWithRight represents a user in combination with the right it can have on a list/namespace
|
|
|
|
type UserWithRight struct {
|
2018-09-17 19:39:14 +02:00
|
|
|
User `xorm:"extends"`
|
|
|
|
Right UserRight `json:"right"`
|
|
|
|
}
|