MCPcopy
hub / github.com/callumalpass/tasknotes / getStatusConfig

Method getStatusConfig

src/services/StatusManager.ts:104–109  ·  view source on GitHub ↗

* Get status configuration by value

(value: string)

Source from the content-addressed store, hash-verified

102 * Get status configuration by value
103 */
104 getStatusConfig(value: string): StatusConfig | undefined {
105 const normalizedValue = this.normalizeStatusValue(value);
106 return this.statuses.find(
107 (s) => this.normalizeStatusValue(s.value) === normalizedValue
108 );
109 }
110
111 /**
112 * Get all completed status values

Callers 4

getNextStatusMethod · 0.95
getPreviousStatusMethod · 0.95
isCompletedStatusMethod · 0.95
getStatusOrderMethod · 0.95

Calls 1

normalizeStatusValueMethod · 0.95

Tested by

no test coverage detected