MCPcopy Index your code
hub / github.com/Criptext/Criptext-Email-React-Client / activateAddress

Function activateAddress

electron_app/src/clientManager.js:184–190  ·  view source on GitHub ↗
({ rowId, active, recipientId })

Source from the content-addressed store, hash-verified

182};
183
184const activateAddress = async ({ rowId, active, recipientId }) => {
185 const client = await createClient({ recipientId });
186 const res = await client.activateAddress(rowId, active);
187 return res.status === 200
188 ? res
189 : await checkExpiredSession(res, activateAddress, { rowId, active });
190};
191
192const acknowledgeEvents = async params => {
193 const { eventIds, recipientId } = params;

Callers

nothing calls this directly

Calls 2

createClientFunction · 0.70
checkExpiredSessionFunction · 0.70

Tested by

no test coverage detected