Browse Source

teams: explains the external property of a team membership.

Leonard Gram 6 years ago
parent
commit
978c20a604
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pkg/models/team_member.go

+ 1 - 1
pkg/models/team_member.go

@@ -16,7 +16,7 @@ type TeamMember struct {
 	OrgId      int64
 	OrgId      int64
 	TeamId     int64
 	TeamId     int64
 	UserId     int64
 	UserId     int64
-	External   bool
+	External   bool // Signals that the membership has been created by an external systems, such as LDAP
 	Permission PermissionType
 	Permission PermissionType
 
 
 	Created time.Time
 	Created time.Time