MCPcopy Create free account
hub / github.com/CreminiAI/skillpack / getWebConversations

Method getWebConversations

src/runtime/adapters/web.ts:248–255  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

246 // -- Conversation API ---------------------------------------------------
247
248 const getWebConversations = () => {
249 const activeChannels = new Set(agent.getActiveChannelIds());
250 return this.conversationService!.listConversations(activeChannels, {
251 includeDefaultWeb: true,
252 includeLegacyWeb: false,
253 allowedPlatforms: ["web"],
254 });
255 };
256
257 app.get("/api/conversations", (_req, res) => {
258 res.json(getWebConversations());

Callers

nothing calls this directly

Calls 2

listConversationsMethod · 0.80
getActiveChannelIdsMethod · 0.65

Tested by

no test coverage detected