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

@@ -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>();
};
}
}