Skip to content

Commit 421c0b5

Browse files
authored
Merge pull request #380 from rust-lang/alumni-all
Remove alumni from the all@ mailing list
2 parents 118d3c3 + 08a14e2 commit 421c0b5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/schema.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,12 @@ impl Team {
172172
}
173173
if self.people.include_all_team_members {
174174
for team in data.teams() {
175-
if team.is_wg() || team.is_marker_team() || team.name == self.name {
175+
if team.is_wg()
176+
|| team.is_marker_team()
177+
|| team.name == self.name
178+
// This matches the special alumni team.
179+
|| team.people.include_all_alumni
180+
{
176181
continue;
177182
}
178183
for member in team.members(data)? {

0 commit comments

Comments
 (0)