Skip to content

Commit 7f63bbb

Browse files
committed
Change what does an "active team" mean
1 parent d8ecd44 commit 7f63bbb

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/teams.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,10 @@ impl RustTeams {
358358
/// Is this a team for which we should display its members on the "All Project Members" page,
359359
/// and whose members should receive a separate person page?
360360
fn is_active_team(team: &Team) -> bool {
361-
team.name != "alumni"
361+
if team.kind == TeamKind::MarkerTeam && team.website_data.is_none() {
362+
return false;
363+
}
364+
true
362365
}
363366

364367
/// Get a relative URL of a team that should be appended to

0 commit comments

Comments
 (0)