We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81b23fe commit 7329d24Copy full SHA for 7329d24
apps/web/src/composables/useDmSocket.ts
@@ -98,7 +98,12 @@ const defaultExport = (options: {
98
namespaces.PRESENTATION_TEXT,
99
),
100
edges: socket.addNamespace<EdgesEvents>(namespaces.EDGES, {}),
101
- coa: socket.addNamespace<CoaEvents>(namespaces.COA),
+ coa: socket.addNamespace<CoaEvents>(namespaces.COA, {
102
+ cache: {
103
+ storage: cacheStorage,
104
+ ttl: until4am(),
105
+ },
106
+ }),
107
globalStats: socket.addNamespace<GlobalStatsEvents>(
108
namespaces.GLOBAL_STATS,
109
{
0 commit comments