feature: Self-Service Clinical Testing Sessions
CI / backend (push) Successful in 8m52s
CI / frontend (push) Failing after 1m39s

This commit is contained in:
voltsrage
2026-08-06 04:03:04 +08:00
parent 1d28880920
commit 80b009fd23
41 changed files with 4922 additions and 123 deletions
@@ -16,6 +16,7 @@ public enum AuditAction
TokenRefreshed,
SimulationRunStarted,
SimulationRunStopped,
SimulationDataPurged,
}
public static class AuditActionExtensions
@@ -38,6 +39,7 @@ public static class AuditActionExtensions
AuditAction.TokenRefreshed => "TOKEN_REFRESHED",
AuditAction.SimulationRunStarted => "SIMULATION_RUN_STARTED",
AuditAction.SimulationRunStopped => "SIMULATION_RUN_STOPPED",
AuditAction.SimulationDataPurged => "SIMULATION_DATA_PURGED",
_ => throw new ArgumentOutOfRangeException(nameof(a))
};
@@ -59,6 +61,7 @@ public static class AuditActionExtensions
"TOKEN_REFRESHED" => AuditAction.TokenRefreshed,
"SIMULATION_RUN_STARTED" => AuditAction.SimulationRunStarted,
"SIMULATION_RUN_STOPPED" => AuditAction.SimulationRunStopped,
"SIMULATION_DATA_PURGED" => AuditAction.SimulationDataPurged,
_ => throw new ArgumentOutOfRangeException(nameof(v))
};
}