Git - add avatar resolution to git blame editor decoration hover (#238083)

* Initial implementation

* Add logging

* Improve avatar resolution
This commit is contained in:
Ladislau Szomoru
2025-01-16 21:33:08 +01:00
committed by GitHub
parent 7caedf655b
commit abecfae1ec
7 changed files with 290 additions and 9 deletions

View File

@@ -290,6 +290,7 @@ export interface BranchProtectionProvider {
}
export interface SourceControlHistoryItemDetailsProvider {
provideAvatar(repository: Repository, commit: string, authorName?: string, authorEmail?: string): Promise<string | undefined>;
provideHoverCommands(repository: Repository): Promise<Command[] | undefined>;
provideMessageLinks(repository: Repository, message: string): Promise<string | undefined>;
}