1
0

Added an endpoint to update a team <-> namespace relation

This commit is contained in:
kolaente
2018-09-19 08:16:04 +02:00
parent aa40ab8eed
commit 067672dcb4
6 changed files with 58 additions and 1 deletions

View File

@ -11,3 +11,9 @@ func (tn *TeamNamespace) CanDelete(user *User) bool {
n, _ := GetNamespaceByID(tn.NamespaceID)
return n.IsAdmin(user)
}
// CanUpdate checks if a user can update a team from a namespace. Only namespace admins can do that.
func (tn *TeamNamespace) CanUpdate(user *User) bool {
n, _ := GetNamespaceByID(tn.NamespaceID)
return n.IsAdmin(user)
}