Implemented container helper status checked. Started implementing container helper ui. Improved update modal

This commit is contained in:
2026-01-25 22:51:51 +01:00
parent e2f344ab4e
commit 4e96905fb2
7 changed files with 152 additions and 37 deletions

View File

@@ -0,0 +1,3 @@
namespace Moonlight.Shared.Http.Responses.Admin;
public record ContainerHelperStatusDto(bool IsEnabled, bool IsReachable);

View File

@@ -47,6 +47,9 @@ namespace Moonlight.Shared.Http;
// Events
[JsonSerializable(typeof(RebuildEvent))]
// Container Helper
[JsonSerializable(typeof(ContainerHelperStatusDto))]
public partial class SerializationContext : JsonSerializerContext
{
}