11 lines
421 B
JavaScript
11 lines
421 B
JavaScript
export const CURRENT_VERSION = 1;
|
|
|
|
export const GROUP_DATA_TTL = 30000; // 30 seconds in ms (shorter TTL for real-time group updates)
|
|
|
|
export const INITIAL_STATE = {
|
|
version: CURRENT_VERSION,
|
|
activeGroup: null, // Index of the active group in the groups array
|
|
groups: [], // Array of { name, token, createdAt }
|
|
groupDataCache: {}, // Keyed by group name, value has shape: { lastUpdated, loading, data, error }
|
|
};
|