Browse Source

Fix listing team members (#3048)

pull/3084/head
Kim Carlbäcker 8 years ago committed by Unknwon
parent
commit
3c0c7a9f83
  1. 2
      models/org.go

2
models/org.go

@ -484,6 +484,8 @@ WHERE team_user.org_id = ? AND team_user.uid = ?`,
return fmt.Errorf("get teams: %v", err)
}
org.Teams = teams
// FIXME: should I change this value inside method,
// or only in location of caller where it's really needed?
org.NumTeams = len(org.Teams)

Loading…
Cancel
Save