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

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