Forge
csharp3407750f
1using AgentForge.Abstractions;
2
3namespace AgentForge.Plugin.Org.Web.Components;
4
5internal static class ForgeViewOrgCatalogLinks
6{
7 internal static string Build(string catalogBasePath, string? groupPath)
8 {
9 if (string.IsNullOrWhiteSpace(groupPath))
10 return catalogBasePath;
11
12 return $"{catalogBasePath}?group={Uri.EscapeDataString(ForgeRepoGroupPath.ToUrlPath(groupPath))}";
13 }
14}
15
View only · write via MCP/CIDE