Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
gpt-engineer-app[bot]
2026-04-18 01:19:49 +00:00
co-authored by renee-png
parent c80019d676
commit 245a0dc28f
@@ -7,7 +7,7 @@ const corsHeaders = {
"Access-Control-Allow-Methods": "POST, OPTIONS",
};
type Role = "admin" | "attorney" | "staff";
type Role = "admin" | "attorney" | "paralegal" | "legal_clerk" | "staff";
Deno.serve(async (req) => {
if (req.method === "OPTIONS") return new Response(null, { headers: corsHeaders });