Implemented node crud and status health check. Added daemon status health endpoint. Refactored project structure. Added sidebar items and ui views
This commit is contained in:
@@ -1,13 +1,21 @@
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
using MoonlightServers.Shared.Http.Requests;
|
||||
using MoonlightServers.Shared.Http.Responses;
|
||||
using Moonlight.Shared.Http.Responses;
|
||||
using MoonlightServers.Shared.Admin.Nodes;
|
||||
|
||||
namespace MoonlightServers.Shared;
|
||||
|
||||
[JsonSerializable(typeof(FormSubmitDto))]
|
||||
[JsonSerializable(typeof(FormResultDto))]
|
||||
// Admin
|
||||
|
||||
// - Node
|
||||
[JsonSerializable(typeof(CreateNodeDto))]
|
||||
[JsonSerializable(typeof(UpdateNodeDto))]
|
||||
[JsonSerializable(typeof(NodeDto))]
|
||||
[JsonSerializable(typeof(PagedData<NodeDto>))]
|
||||
|
||||
|
||||
[JsonSourceGenerationOptions(JsonSerializerDefaults.Web)]
|
||||
public partial class SerializationContext : JsonSerializerContext
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user