Convert 'anonymous-user' from real-time api in 'null' internally

This commit is contained in:
James Allen
2016-03-22 09:53:47 +00:00
parent 2af2dd694e
commit f182fbf396
3 changed files with 18 additions and 1 deletions
@@ -15,6 +15,8 @@ module.exports = EditorHttpController =
joinProject: (req, res, next) ->
project_id = req.params.Project_id
user_id = req.query.user_id
if user_id == "anonymous-user"
user_id = null
logger.log {user_id, project_id}, "join project request"
Metrics.inc "editor.join-project"
EditorHttpController._buildJoinProjectView project_id, user_id, (error, project, privilegeLevel) ->