MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / constructor

Method constructor

src/utils/TaskManager.ts:75–84  ·  view source on GitHub ↗
(app: App, settings: TaskNotesSettings, fieldMapper?: FieldMapper)

Source from the content-addressed store, hash-verified

73 private projectCounts: Map<string, number> = new Map();
74
75 constructor(app: App, settings: TaskNotesSettings, fieldMapper?: FieldMapper) {
76 super();
77 this.app = app;
78 this.settings = settings;
79 this.taskTag = settings.taskTag;
80 this.excludedFolders = parseExcludedFolders(settings.excludedFolders);
81 this.fieldMapper = fieldMapper;
82 this.disableNoteIndexing = settings.disableNoteIndexing;
83 this.storeTitleInFilename = settings.storeTitleInFilename;
84 }
85
86 /**
87 * Initialize by setting up native event listeners

Callers

nothing calls this directly

Calls 1

parseExcludedFoldersFunction · 0.90

Tested by

no test coverage detected