repo: update cla.json

This commit is contained in:
Quorafind 2025-11-02 11:03:27 +08:00
parent 83b9168827
commit 7a324469d2
3 changed files with 4 additions and 16 deletions

View file

@ -18,5 +18,5 @@ jobs:
with:
path-to-signatures: "signatures/cla.json"
path-to-document: "https://github.com/quorafind/obsidian-task-genius/blob/master/CLA.md"
branch: "main"
branch: "master"
allowlist: bot*

3
signatures/cla.json Normal file
View file

@ -0,0 +1,3 @@
{
"signedContributors": []
}

View file

@ -978,21 +978,6 @@ export class FileSource {
return { project: projectValue, matchedTags };
}
/**
* Convert a task symbol back to metadata value for file updates
* This will be used in Phase 3 when implementing file task updates
*/
private mapSymbolToFileMetadata(symbol: string): string {
const config = this.config.getConfig();
if (!config.statusMapping.enabled) {
return symbol;
}
// Map symbol back to preferred metadata value
return this.config.mapSymbolToMetadata(symbol);
}
/**
* Apply configured metadata mappings to normalize frontmatter keys
*/