Przeglądaj źródła

teams: explains the external property of a team membership.

Leonard Gram 6 lat temu
rodzic
commit
978c20a604
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      pkg/models/team_member.go

+ 1 - 1
pkg/models/team_member.go

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