feat(#200): save the commit date of the anonymized commit

This commit is contained in:
tdurieux
2023-04-25 23:40:12 +02:00
parent c9acb7b899
commit 7e2c490e4b
6 changed files with 39 additions and 3 deletions

View File

@@ -25,6 +25,7 @@ const AnonymizedRepositorySchema = new Schema({
type: { type: String },
branch: String,
commit: String,
commitDate: Date,
repositoryId: String,
repositoryName: String,
accessToken: String,

View File

@@ -11,6 +11,7 @@ export interface IAnonymizedRepository {
type: "GitHubDownload" | "GitHubStream" | "Zip";
branch?: string;
commit?: string;
commitDate?: Date,
repositoryId?: string;
repositoryName?: string;
accessToken?: string;