Forge
csharp3407750f
1using AgentForge.Abstractions;
2
3namespace AgentForge.Plugin.MergeRequest;
4
5internal static class ForgeMergeRequestViewRegistration
6{
7 internal static void RegisterContributors(ForgeViewContributorRegistry registry)
8 {
9 registry.Add(new ForgeViewContributor
10 {
11 TabId = "merge-requests",
12 Label = "MRs",
13 RoutePrefix = "/view/repos/{name}/merge-requests",
14 Order = 30,
15 PluginId = "merge-request",
16 });
17 }
18}
19
View only · write via MCP/CIDE