Browse Source

teams: explains the external property of a team membership.

Leonard Gram 6 năm trước cách đây
mục cha
commit
978c20a604
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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