Skip to content

Commit 863154f

Browse files
committed
Add /governance/teams/release redirect
The `release` team was moved to an `infra` subteam. This caused existing blogpost links to fail since the server is not aware of this change. This commit fixes the issue by adding an explicit redirect.
1 parent 281bb5f commit 863154f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/redirect.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ static PAGE_REDIRECTS: &[(&str, &str)] = &[
2424
("security.html", "policies/security"),
2525
("team.html", "governance"),
2626
("user-groups.html", "community"),
27+
// Team changes
28+
(
29+
"governance/teams/release",
30+
"governance/teams/infra#team-release",
31+
),
2732
];
2833

2934
static STATIC_FILES_REDIRECTS: &[(&str, &str)] = &[

0 commit comments

Comments
 (0)