mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-24 21:12:38 -04:00
b19c56ccaf
[web] implement split test assignment based on mongo user GitOrigin-RevId: d3e2dff6a5e925cfd0426e9ebfeb7b64dc803f42
8 lines
257 B
JavaScript
8 lines
257 B
JavaScript
function getAnalyticsIdFromMongoUser(user) {
|
|
// ensure `analyticsId` is set to the user's `analyticsId`, and fallback to their `userId` for pre-analyticsId users
|
|
return user.analyticsId || user._id
|
|
}
|
|
|
|
module.exports = {
|
|
getAnalyticsIdFromMongoUser,
|
|
}
|