Merge branch 'cursor/add-migration-and-update-endpoint-1563' of https://github.com/buster-so/buster into cursor/add-migration-and-update-endpoint-1563

This commit is contained in:
dal 2025-07-03 15:33:13 -06:00
commit 7af9b8ef78
No known key found for this signature in database
GPG Key ID: 16F4B0E1E9F61122
2 changed files with 2 additions and 2 deletions

View File

@ -610,7 +610,7 @@ NEVER proactively create documentation files (*.md) or README files. Only create
### Linting Rules
- Always use `pnpm run check` or `pnpm run check:fix`
- **Rule: `i dont' want caldue to ever run a biome lint fix only biome lint`**
- **Rule: `I don't want Claude to ever run a biome lint fix only biome lint`**
- This means ONLY use `pnpm run check` (linting without auto-fixing)
- Do NOT use `pnpm run check:fix`
- Claude should understand to ONLY run lint checks, never auto-fix

View File

@ -354,7 +354,7 @@ export class SlackHandler {
}
// Parse request body
const body = await c.req.json();
const body = await c.req.json().catch(() => ({}));
const parsed = UpdateIntegrationSchema.safeParse(body);
if (!parsed.success) {