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:
committed by
GitHub
parent
e3220af9ce
commit
6539eb4554
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user