| 1 | using AgentForge.Abstractions; |
| 2 | |
| 3 | namespace AgentForge.Plugin.MergeRequest; |
| 4 | |
| 5 | internal 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 |