feat: Created PullRequestsDashboardProvider for resolving team and team member relations

Signed-off-by: Marley Powell <Marley.Powell@exclaimer.com>
This commit is contained in:
Marley Powell
2021-12-16 14:35:21 +00:00
parent 9c2e6bb86a
commit 060a39e4d8
7 changed files with 191 additions and 19 deletions
+10 -1
View File
@@ -178,7 +178,16 @@ export interface Repository {
export interface Team {
id?: string;
name?: string;
memberIds?: string[];
projectId?: string;
projectName?: string;
members?: string[];
}
export interface TeamMember {
id?: string;
displayName?: string;
uniqueName?: string;
memberOf?: string[];
}
/**