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

Function isAutoRunLockedState

background.js:3815–3823  ·  view source on GitHub ↗
(state)

Source from the content-addressed store, hash-verified

3813}
3814
3815function isAutoRunLockedState(state) {
3816 return Boolean(state.autoRunning)
3817 && (
3818 state.autoRunPhase === 'running'
3819 || state.autoRunPhase === 'waiting_step'
3820 || state.autoRunPhase === 'retrying'
3821 || state.autoRunPhase === 'waiting_interval'
3822 );
3823}
3824
3825function isAutoRunPausedState(state) {
3826 return Boolean(state.autoRunning) && state.autoRunPhase === 'waiting_email';

Callers 5

scheduleAutoRunFunction · 0.85
handleMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected