7 lines
190 B
Go
7 lines
190 B
Go
package models
|
|
|
|
// CanCreate checks if the use can create a team <-> list relation
|
|
func (tl *TeamList) CanCreate(user *User) bool {
|
|
l, _ := GetListByID(tl.ListID)
|
|
return l.IsAdmin(user)
|
|
}
|