We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8ecd44 + 7f63bbb commit b62f3a5Copy full SHA for b62f3a5
src/teams.rs
@@ -358,7 +358,10 @@ impl RustTeams {
358
/// Is this a team for which we should display its members on the "All Project Members" page,
359
/// and whose members should receive a separate person page?
360
fn is_active_team(team: &Team) -> bool {
361
- team.name != "alumni"
+ if team.kind == TeamKind::MarkerTeam && team.website_data.is_none() {
362
+ return false;
363
+ }
364
+ true
365
}
366
367
/// Get a relative URL of a team that should be appended to
0 commit comments