MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / setPurchaseDisabled

Function setPurchaseDisabled

background.js:2126–2132  ·  view source on GitHub ↗
(purchaseId, disabled)

Source from the content-addressed store, hash-verified

2124 ));
2125 },
2126 async setPurchaseDisabled(purchaseId, disabled) {
2127 await request('PUT', `/api/v1/openapi/email/purchases/${encodeURIComponent(purchaseId)}/disabled`, {
2128 jsonData: {
2129 disabled: disabled ? 1 : 0,
2130 },
2131 });
2132 },
2133 async batchSetPurchaseDisabled(ids, disabled) {
2134 await request('POST', '/api/v1/openapi/email/purchases/batch-disabled', {
2135 jsonData: {

Callers

nothing calls this directly

Calls 1

requestFunction · 0.85

Tested by

no test coverage detected