Implement people management features by adding API endpoints for retrieving school rosters and individual person cards. Enhance the UI to support a people browser with filtering and pagination capabilities. Update localization strings for improved user experience and ensure robust handling of person data. Revise documentation to reflect new API functionalities and update tests to validate the new features.
ci / server (push) Failing after 11s
ci / client (push) Successful in 17s

This commit is contained in:
Leonid Pershin
2026-08-18 19:44:42 +03:00
parent 52c5082418
commit 533bd80f5e
23 changed files with 2134 additions and 47 deletions
+6
View File
@@ -1,3 +1,4 @@
using HSchool.Server.Api;
using HSchool.Server.Net;
namespace HSchool.Server.Game;
@@ -15,4 +16,9 @@ internal abstract record WorkerCommand
internal sealed record SetRunning(bool Running) : WorkerCommand;
internal sealed record SetSpeed(byte SpeedIndex) : WorkerCommand;
internal sealed record GetPerson(
string PersonId,
string Locale,
TaskCompletionSource<PersonCardResult> Result) : WorkerCommand;
}