mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Merge pull request #10828 from overleaf/em-fix-deleted-projects
Fix project deletion when history id is a string GitOrigin-RevId: cf60d9b6b7801592e1ff9f9be135f68dfe010ecf
This commit is contained in:
parent
33c8580f7e
commit
2af4b38143
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ const DeleterDataSchema = new Schema({
|
|||
deletedProjectReadOnlyToken: { type: String },
|
||||
deletedProjectLastUpdatedAt: { type: Date },
|
||||
deletedProjectOverleafId: { type: Number },
|
||||
deletedProjectOverleafHistoryId: { type: Number },
|
||||
deletedProjectOverleafHistoryId: { type: Schema.Types.Mixed },
|
||||
})
|
||||
|
||||
const DeletedProjectSchema = new Schema(
|
||||
|
|
Loading…
Reference in a new issue