mirror of
https://github.com/taskgenius/taskgenius-plugin.git
synced 2026-07-22 06:40:25 +00:00
repo: update cla.json
This commit is contained in:
parent
83b9168827
commit
7a324469d2
3 changed files with 4 additions and 16 deletions
2
.github/workflows/cla.yml
vendored
2
.github/workflows/cla.yml
vendored
|
|
@ -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
3
signatures/cla.json
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"signedContributors": []
|
||||
}
|
||||
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue