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.

at cd7cada2f86b4e866a15b4323bb8d6d7ab5bba8b 11 lines 370 B view raw
1/** Skip webhook sync when it likely echoes our own outbound API update. */ 2export const OUTBOUND_STATE_ECHO_WINDOW_MS = 5000; 3 4export function parseIssueUpdatedAtMs(issue: { 5 updated_at?: string; 6}): number | null { 7 const raw = issue.updated_at; 8 if (!raw || typeof raw !== "string") return null; 9 const t = Date.parse(raw); 10 return Number.isNaN(t) ? null : t; 11}