MCPcopy Create free account
hub / github.com/EvoMap/evolver / joinSession

Method joinSession

src/proxy/extensions/sessionHandler.js:31–42  ·  view source on GitHub ↗
({ sessionId } = {})

Source from the content-addressed store, hash-verified

29 }
30
31 joinSession({ sessionId } = {}) {
32 if (!sessionId) throw new Error('sessionId is required');
33
34 return this.store.send({
35 type: 'session_join',
36 payload: {
37 session_id: sessionId,
38 joined_at: new Date().toISOString(),
39 },
40 priority: 'normal',
41 });
42 }
43
44 leaveSession({ sessionId } = {}) {
45 if (!sessionId) throw new Error('sessionId is required');

Callers 2

extensions.test.jsFile · 0.80
buildRoutesFunction · 0.80

Calls 1

sendMethod · 0.45

Tested by

no test coverage detected