1
0
Fork 0
mirror of https://github.com/overleaf/overleaf.git synced 2025-04-04 10:35:44 +00:00

Record user id correctly when updating position

This commit is contained in:
James Allen 2015-02-05 13:41:31 +00:00
parent 99ac814c7d
commit 79cd0e6a5c
2 changed files with 2 additions and 2 deletions
services/real-time

View file

@ -127,7 +127,7 @@ module.exports = WebsocketController =
first_name: first_name,
last_name: last_name,
email: email,
user_id: user_id
_id: user_id
}, {
row: cursorData.row,
column: cursorData.column,

View file

@ -331,7 +331,7 @@ describe 'WebsocketController', ->
it "should send the cursor data to the connected user manager", (done)->
@ConnectedUsersManager.updateUserPosition.calledWith(@project_id, @client.id, {
user_id: @user_id,
_id: @user_id,
email: @email,
first_name: @first_name,
last_name: @last_name