Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0ebb048

Browse files
SaaS GitLab change to Gitlab.com and added relevant redirect Update GitLab sidebar label and link references in documentation (#93)
* SaaS GitLab change to Gitlab.com and added relevant redirect * changes for the self-hosted-github to Github Enterprise Server
1 parent 8930442 commit 0ebb048

File tree

4 files changed

+19
-10
lines changed

4 files changed

+19
-10
lines changed

docs/platforms/self-hosted-github.md renamed to docs/platforms/github-enterprise-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: CodeRabbit for Self-Managed GitHub
33
description: Integrate CodeRabbit with your Self-Managed GitHub instance.
4-
sidebar_label: Self-Managed GitHub
4+
sidebar_label: Github Enteprise Server
55
sidebar_position: 3
66
---
77

docs/platforms/saas-gitlab.md renamed to docs/platforms/gitlab-com.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Integrating CodeRabbit with SaaS GitLab
33
description: Integrate CodeRabbit with SaaS GitLab.
4-
sidebar_label: SaaS GitLab
4+
sidebar_label: GitLab.com
55
sidebar_position: 1
66
---
77

docs/platforms/platforms.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ CodeRabbit supports various Git platforms to provide code review for your reposi
1212
| Host | Support |
1313
| ------------------------ | ---------------------------------- |
1414
| GitHub.com | [Supported][login] |
15-
| GitHub Enterprise Server | [Supported](self-hosted-github.md) |
15+
| GitHub Enterprise Server | [Supported](github-enterprise-server.md) |
1616

1717
## GitLab
1818

1919
| Host | Support |
2020
| ------------------- | ---------------------------------- |
21-
| GitLab.com | [Supported](saas-gitlab.md) |
21+
| GitLab.com | [Supported](gitlab-com.md) |
2222
| GitLab Self Managed | [Supported](self-hosted-gitlab.md) |
2323

2424
## Azure DevOps

docusaurus.config.ts

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
import type * as Preset from "@docusaurus/preset-classic";
2-
import type { Config } from "@docusaurus/types";
3-
import { themes as prismThemes } from "prism-react-renderer";
4-
import { EnumChangefreq } from "sitemap";
1+
import { themes as prismThemes } from 'prism-react-renderer';
2+
import { EnumChangefreq } from 'sitemap';
3+
4+
import type * as Preset from '@docusaurus/preset-classic';
5+
import type { Config } from '@docusaurus/types';
56

67
const baseUrl = "/";
78

@@ -74,20 +75,28 @@ const config: Config = {
7475
},
7576
{
7677
from: "/integrations/saas-gitlab",
77-
to: "/platforms/saas-gitlab",
78+
to: "/platforms/gitlab-com",
7879
},
7980
{
8081
from: "/integrations/self-hosted-gitlab",
8182
to: "/platforms/self-hosted-gitlab",
8283
},
8384
{
8485
from: "/integrations/self-hosted-github",
85-
to: "/platforms/self-hosted-github",
86+
to: "/platforms/github-enterprise-server",
8687
},
8788
{
8889
from: "/platforms/saas-azure-devops",
8990
to: "/platforms/azure-devops",
9091
},
92+
{
93+
from: "/platforms/saas-gitlab",
94+
to: "/platforms/gitlab-com",
95+
},
96+
{
97+
from: "/platforms/self-hosted-github",
98+
to: "/platforms/github-enterprise-server",
99+
},
91100

92101
],
93102
},

0 commit comments

Comments
 (0)