feat: iCal calendar feed (GRO-107)

feat: iCal calendar feed (GRO-107)

Closes GRO-107
This commit was merged in pull request #116.
This commit is contained in:
groombook-engineer[bot]
2026-03-27 02:37:06 +00:00
committed by GitHub
parent e3220af9ce
commit 6539eb4554
12 changed files with 419 additions and 2 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ import type { AppEnv } from "../middleware/rbac.js";
export const portalRouter = new Hono<AppEnv>();
const customerNotesSchema = z.object({
customerNotes: z.string().max(500),
// .min(1) prevents empty strings — clearing notes is not a supported use case
customerNotes: z.string().min(1).max(500),
});
portalRouter.patch(