1
0

Cleanup/fixing methods

This commit is contained in:
konrad
2018-08-30 19:00:27 +02:00
committed by kolaente
parent efaa277751
commit aeb1521cc4
4 changed files with 55 additions and 12 deletions

View File

@ -3,18 +3,22 @@ package models
// Delete deletes a team <-> list relation based on the list & team id
func (tl *TeamList) Delete() (err error) {
// Check if the list exists
_, err = GetListByID(tl.ListID)
if err != nil {
return
}
// Check if the team exists
_, err = GetTeamByID(tl.TeamID)
if err != nil {
return
}
// Check if the team has access to the list
has, err := x.Where("team_id = ? AND list_id = ?", tl.TeamID, tl.ListID).
Get(&TeamList{})
if err != nil {
return
}
if !has {
return ErrTeamDoesNotHaveAccessToList{TeamID: tl.TeamID, ListID: tl.ListID}
}
// Delete the relation
_, err = x.Where("team_id = ?", tl.TeamID).
And("list_id = ?", tl.ListID).