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

Function appendAndBroadcastAccountRunRecord

background.js:4835–4847  ·  view source on GitHub ↗
(status, stateOverride = null, reason = '')

Source from the content-addressed store, hash-verified

4833}
4834
4835async function appendAndBroadcastAccountRunRecord(status, stateOverride = null, reason = '') {
4836 if (!accountRunHistoryHelpers?.appendAccountRunRecord) {
4837 return null;
4838 }
4839
4840 const record = await accountRunHistoryHelpers.appendAccountRunRecord(status, stateOverride, reason);
4841 if (!record) {
4842 return null;
4843 }
4844
4845 await broadcastAccountRunHistoryUpdate();
4846 return record;
4847}
4848
4849const autoRunController = self.MultiPageBackgroundAutoRunController?.createAutoRunController({
4850 addLog,

Callers 3

background.jsFile · 0.85

Calls 1

Tested by

no test coverage detected