kaneo (minimalist kanban) fork to experiment adding a tangled integration github.com/usekaneo/kaneo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore(webhooks): simplify generic webhook validation

Tin f5ff643b 0ad74ae6

+1 -3
+1 -3
apps/api/src/plugins/generic-webhook/config.ts
··· 59 59 config: unknown, 60 60 ): Promise<{ valid: boolean; errors?: string[] }> { 61 61 try { 62 - const parsed = v.parse(genericWebhookConfigSchema, config); 63 - const normalized = normalizeGenericWebhookConfig(parsed); 64 - void normalized; 62 + v.parse(genericWebhookConfigSchema, config); 65 63 return { valid: true }; 66 64 } catch (error) { 67 65 if (error instanceof v.ValiError) {