MCPcopy
hub / github.com/directus/directus / getFlowManager

Function getFlowManager

api/src/flows.ts:39–47  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

37let flowManager: FlowManager | undefined;
38
39export function getFlowManager(): FlowManager {
40 if (flowManager) {
41 return flowManager;
42 }
43
44 flowManager = new FlowManager();
45
46 return flowManager;
47}
48
49type TriggerHandler = {
50 id: string;

Callers 14

flows.test.tsFile · 0.85
createAppFunction · 0.85
flows.tsFile · 0.85
getCacheKeyFunction · 0.85
handlerFunction · 0.85
createOneMethod · 0.85
updateManyMethod · 0.85
deleteManyMethod · 0.85
createOneMethod · 0.85
updateManyMethod · 0.85
deleteManyMethod · 0.85
registerOperationMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected