mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 02:46:55 +00:00
Send 204 rather than redirect when leaving a project
This commit is contained in:
parent
e07aa9165f
commit
1bcc0a4554
2 changed files with 3 additions and 3 deletions
|
@ -19,7 +19,7 @@ module.exports = CollaboratorsController =
|
|||
return next(new Error("User should be logged in"))
|
||||
CollaboratorsHandler.removeUserFromProject req.params.project_id, user_id, (error) ->
|
||||
return next(error) if error?
|
||||
res.redirect "/project"
|
||||
res.send 204
|
||||
|
||||
_formatCollaborators: (project, callback = (error, collaborators) ->) ->
|
||||
collaborators = []
|
||||
|
|
|
@ -63,8 +63,8 @@ describe "CollaboratorsController", ->
|
|||
it "should remove the logged in user from the project", ->
|
||||
@CollaboratorsHandler.removeUserFromProject.calledWith(@project_id, @user_id)
|
||||
|
||||
it "should redirect to the project page", ->
|
||||
@res.redirectedTo.should.equal "/project"
|
||||
it "should return a success code", ->
|
||||
@res.statusCode.should.equal 204
|
||||
|
||||
describe "_formatCollaborators", ->
|
||||
beforeEach ->
|
||||
|
|
Loading…
Reference in a new issue