MCPcopy Create free account
hub / github.com/GCWing/BitFun / getSessionSortTimestamp

Function getSessionSortTimestamp

src/web-ui/src/flow_chat/utils/sessionOrdering.ts:71–73  ·  view source on GitHub ↗
(session: Pick<Session, 'createdAt' | 'lastFinishedAt'>)

Source from the content-addressed store, hash-verified

69}
70
71export function getSessionSortTimestamp(session: Pick<Session, 'createdAt' | 'lastFinishedAt'>): number {
72 return session.lastFinishedAt ?? session.createdAt;
73}
74
75export function compareSessionsForDisplay(
76 a: Pick<Session, 'sessionId' | 'createdAt' | 'lastFinishedAt'>,

Callers 3

NavSearchDialogFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected