Skip to content

Commit 521bb22

Browse files
authored
1 parent 1af54b3 commit 521bb22

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

src/data/navigation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ export const navigation: NavigationItem[] = [
262262
sections: [
263263
{ title: "Metrics", href: "/analytics#metrics" },
264264
{ title: "Cloud Analytics", href: "/analytics/cloud" },
265-
{ title: "Self-hosted Analytics", href: "/analytics/self-hosted" },
265+
{ title: "Air-gapped Analytics", href: "/analytics/air-gapped" },
266266
],
267267
},
268268
{

src/data/redirects.ts

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6782,13 +6782,22 @@ const redirectsData = [
67826782
destination: "/pricing/faqs#how-are-active-users-calculated-for-sourcegraph-code-search-and-code-intelligence-platform",
67836783
permanent: true
67846784
},
6785-
6785+
67866786
{
67876787
source: "/cody/embedded-repos",
67886788
destination: "/cody",
67896789
permanent: true
6790+
},
6791+
6792+
// Redirect for self-hosted analytics
6793+
6794+
{
6795+
source: "/analytics/self-hosted",
6796+
destination: "/analytics/air-gapped",
6797+
permanent: true
67906798
}
67916799

6800+
67926801
];
67936802

67946803
const updatedRedirectsData = redirectsData.map(redirect => {

0 commit comments

Comments
 (0)