Remove expiresAt logic from acceptInvite

This commit is contained in:
Shane Kilkelly 2016-07-25 09:07:47 +01:00
parent 78570817d5
commit 78a410c39d

View file

@ -70,12 +70,6 @@ module.exports = CollaboratorsInviteHandler =
logger.log {err, projectId, inviteId}, "no matching invite found"
return callback(err)
now = new Date()
if invite.expiresAt < now
err = new Errors.NotFoundError("invite expired")
logger.log {err, projectId, inviteId, expiresAt: invite.expiresAt}, "invite expired"
return callback(err)
# do the thing
existing_users = (project.collaberator_refs or [])
existing_users = existing_users.concat(project.readOnly_refs or [])