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

Function setAutoRunDelayEnabledState

background.js:3854–3859  ·  view source on GitHub ↗
(enabled)

Source from the content-addressed store, hash-verified

3852}
3853
3854async function setAutoRunDelayEnabledState(enabled) {
3855 const normalized = Boolean(enabled);
3856 await setPersistentSettings({ autoRunDelayEnabled: normalized });
3857 await setState({ autoRunDelayEnabled: normalized });
3858 broadcastDataUpdate({ autoRunDelayEnabled: normalized });
3859}
3860
3861async function ensureAutoRunTimerAlarm(fireAt) {
3862 if (!Number.isFinite(fireAt) || fireAt <= Date.now()) {

Callers 1

launchAutoRunTimerPlanFunction · 0.85

Calls 3

setPersistentSettingsFunction · 0.85
setStateFunction · 0.85
broadcastDataUpdateFunction · 0.85

Tested by

no test coverage detected