| 1 | using AgentForge.Models; |
| 2 | using AgentForge.Plugin.View; |
| 3 | |
| 4 | namespace AgentForge.Plugin.Org.Web.Components; |
| 5 | |
| 6 | public static class ForgeViewOrgMeta |
| 7 | { |
| 8 | public static string Render(RepoVisibility defaultVisibility) => |
| 9 | ForgeHtml.P("meta", |
| 10 | ForgeHtml.Text("Default visibility: "), |
| 11 | ForgeHtml.Badge(defaultVisibility.ToSlug())); |
| 12 | } |
| 13 |