Started adding allocation editor

This commit is contained in:
Masu Baumgartner
2024-09-01 23:19:45 +02:00
parent 60a8f60bcb
commit 45a3a76214
3 changed files with 7 additions and 1 deletions

View File

@@ -35,7 +35,6 @@
<Folder Include="Helpers\" />
<Folder Include="Models\" />
<Folder Include="Services\" />
<Folder Include="UI\Components\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1 @@
<h3 class="text-xl2 text-blue-500">Allocation editor</h3>

View File

@@ -2,6 +2,7 @@
@using Moonlight.Client.App.Models.Crud
@using Moonlight.Shared.Http.Resources
@using MoonlightServers.Client.UI.Components.Forms
@using MoonlightServers.Shared.Http.Requests.Admin.Nodes
@using MoonlightServers.Shared.Http.Responses.Admin.Nodes
@@ -82,6 +83,11 @@
.DefaultPage
.DefaultSection
.AddProperty(x => x.SslEnabled);
option
.WithPage("Allocations")
.DefaultSection
.AddComponent<AllocationEditor>();
};
}
}