Skip to content

Commit

Permalink
add missing aria routes-config
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamin-747 committed Dec 22, 2024
1 parent 2438440 commit c82e588
Showing 1 changed file with 27 additions and 1 deletion.
28 changes: 27 additions & 1 deletion aria/lib/routes-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,33 @@ export const ROUTES: EachRoute[] = [
{
title: "Mono Module",
href: "/mono",
items: [{ title: "Protocol API", href: "/protocol" }],
items: [
{ title: "Git Protocol API", href: "/protocol" },
{
title: "MR Management",
href: "/mergerequest",
noLink: true,
items: [
{ title: "Fetch MR List", href: "/fetch-mr" },
{ title: "Merge MR", href: "/merge-mr" },
{ title: "Close MR", href: "/close-mr" },
{ title: "Reopen MR", href: "/reopen-mr" },
{ title: "Files Changed", href: "/files-changed" },
{ title: "MR Deatil", href: "/detail" },
{ title: "Comment", href: "/comment" },
{ title: "Delete Comment", href: "/delete-comment" },
]
},
{
title: "Code Preview",
href: "/code-preview",
noLink: true,
items: [
{ title: "Tree", href: "/tree" },
{ title: "Blob", href: "/blob" },
]
}
]
},
{ title: "Mega Module", href: "/mega" },
],
Expand Down

0 comments on commit c82e588

Please sign in to comment.