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:
parent
99ac814c7d
commit
79cd0e6a5c
2 changed files with 2 additions and 2 deletions
services/real-time
|
@ -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,
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue