server side now actually returning git tags shaped like git tags

Signed-off-by: mo <mcassidy@hchb.com>
This commit is contained in:
mo
2022-05-02 10:11:53 -05:00
parent 8dfbd66c4a
commit 0c16cef574
2 changed files with 13 additions and 20 deletions
+3 -9
View File
@@ -109,16 +109,10 @@ export enum PullRequestStatus {
}
export type GitTag = {
pullRequestId?: number;
repoName?: string;
title?: string;
uniqueName?: string;
objectId?: string;
peeledObjectId?: string;
name?: string;
createdBy?: string;
creationDate?: string;
sourceRefName?: string;
targetRefName?: string;
status?: PullRequestStatus;
isDraft?: boolean;
link: string;
};