/lists/{listID}/teams now also returns the user right

This commit is contained in:
kolaente 2018-09-17 19:45:18 +02:00
parent cf6577445d
commit 0a06e5a246
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 7 additions and 3 deletions

View File

@ -18,3 +18,8 @@ type TeamList struct {
func (TeamList) TableName() string {
return "team_list"
}
type teamWithRight struct {
Team `xorm:"extends"`
Right TeamRight `json:"right"`
}

View File

@ -12,9 +12,8 @@ func (tl *TeamList) ReadAll(user *User) (interface{}, error) {
}
// Get the teams
all := []*Team{}
err = x.Select("teams.*").
all := []*teamWithRight{}
err = x.
Table("teams").
Join("INNER", "team_list", "team_id = teams.id").
Where("team_list.list_id = ?", tl.ListID).