mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #3845 from overleaf/ho-upload-file-mark-updated
mark project as updated when uploading/replacing files GitOrigin-RevId: 948a3351ac59d4f08411dd83bb543444de0b9b52
This commit is contained in:
parent
3d48e1e027
commit
9e2db00d53
2 changed files with 17 additions and 0 deletions
|
@ -533,6 +533,7 @@ const ProjectEntityUpdateHandler = {
|
|||
if (error != null) {
|
||||
return callback(error)
|
||||
}
|
||||
ProjectUpdateHandler.markAsUpdated(projectId, new Date(), userId)
|
||||
callback(null, fileRef, folderId)
|
||||
}
|
||||
)
|
||||
|
@ -631,6 +632,8 @@ const ProjectEntityUpdateHandler = {
|
|||
if (err != null) {
|
||||
return callback(err)
|
||||
}
|
||||
ProjectUpdateHandler.markAsUpdated(projectId, new Date(), userId)
|
||||
|
||||
DocumentUpdaterHandler.updateProjectStructure(
|
||||
projectId,
|
||||
projectHistoryId,
|
||||
|
|
|
@ -651,6 +651,13 @@ describe('ProjectEntityUpdateHandler', function() {
|
|||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should mark the project as updated', function() {
|
||||
const args = this.ProjectUpdater.markAsUpdated.args[0]
|
||||
args[0].should.equal(projectId)
|
||||
args[1].should.exist
|
||||
args[2].should.equal(userId)
|
||||
})
|
||||
|
||||
it('sends the change in project structure to the doc updater', function() {
|
||||
const newFiles = [
|
||||
{
|
||||
|
@ -769,6 +776,13 @@ describe('ProjectEntityUpdateHandler', function() {
|
|||
.should.equal(true)
|
||||
})
|
||||
|
||||
it('should mark the project as updated', function() {
|
||||
const args = this.ProjectUpdater.markAsUpdated.args[0]
|
||||
args[0].should.equal(projectId)
|
||||
args[1].should.exist
|
||||
args[2].should.equal(userId)
|
||||
})
|
||||
|
||||
it('updates the project structure in the doc updater', function() {
|
||||
const oldFiles = [
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue