mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-27 11:01:56 +02:00
if a user does not have a first or last name use their email for their name in connected user data
This commit is contained in:
@@ -21,11 +21,16 @@ define [
|
||||
# Don't store myself
|
||||
continue
|
||||
# Store data in the same format returned by clientTracking.clientUpdated
|
||||
if user.first_name?.length == 0 and user.last_name.length == 0
|
||||
name = user.email
|
||||
else
|
||||
name = "#{user.first_name} #{user.last_name}"
|
||||
|
||||
@$scope.onlineUsers[user.client_id] = {
|
||||
id: user.client_id
|
||||
user_id: user.user_id
|
||||
email: user.email
|
||||
name: "#{user.first_name} #{user.last_name}"
|
||||
name: name
|
||||
doc_id: user.cursorData?.doc_id
|
||||
row: user.cursorData?.row
|
||||
column: user.cursorData?.column
|
||||
|
||||
Reference in New Issue
Block a user