Update
ci-cd-nas / build-push (push) Failing after 27s
ci-cd-nas / deploy (push) Has been skipped

This commit is contained in:
Chris Chen
2026-06-20 22:26:52 -07:00
parent 7ab8e9703b
commit ddced87dc6
12 changed files with 655 additions and 52 deletions
@@ -21,4 +21,8 @@ public interface IOfferingSessionService
Task SaveProofAsync(int id, Stream content, string fileName);
Task<(Stream stream, string contentType)?> OpenProofAsync(int id);
Task DeleteProofAsync(int id);
// Date-keyed variants for the anonymous mobile page (knows the date, not the id).
Task SaveProofForDateAsync(DateOnly date, Stream content, string fileName);
Task<(Stream stream, string contentType)?> OpenProofForDateAsync(DateOnly date);
}