Skip to content
This repository was archived by the owner on Aug 16, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Integrating CodeRabbit with SaaS GitLab
description: Integrate CodeRabbit with SaaS GitLab.
sidebar_label: SaaS GitLab
sidebar_label: GitLab.com
sidebar_position: 1
---

Expand Down
2 changes: 1 addition & 1 deletion docs/platforms/platforms.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ CodeRabbit supports various Git platforms to provide code review for your reposi

| Host | Support |
| ------------------- | ---------------------------------- |
| GitLab.com | [Supported](saas-gitlab.md) |
| GitLab.com | [Supported](gitlab-com.md) |
| GitLab Self Managed | [Supported](self-hosted-gitlab.md) |

## Azure DevOps
Expand Down
15 changes: 10 additions & 5 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import type * as Preset from "@docusaurus/preset-classic";
import type { Config } from "@docusaurus/types";
import { themes as prismThemes } from "prism-react-renderer";
import { EnumChangefreq } from "sitemap";
import { themes as prismThemes } from 'prism-react-renderer';
import { EnumChangefreq } from 'sitemap';

import type * as Preset from '@docusaurus/preset-classic';
import type { Config } from '@docusaurus/types';

const baseUrl = "/";

Expand Down Expand Up @@ -74,7 +75,7 @@ const config: Config = {
},
{
from: "/integrations/saas-gitlab",
to: "/platforms/saas-gitlab",
to: "/platforms/gitlab-com",
},
{
from: "/integrations/self-hosted-gitlab",
Expand All @@ -88,6 +89,10 @@ const config: Config = {
from: "/platforms/saas-azure-devops",
to: "/platforms/azure-devops",
},
{
from: "/platforms/saas-gitlab",
to: "/platforms/gitlab-com",
},

],
},
Expand Down