Closed awatson1978 closed 9 months ago
Need an expiration date for when an invitation code expires, so it doesn't persist indefinitely.
// server/AccountServer.js if(get(Meteor, 'settings.private.invitationCode')){ if(moment().now() < get(Meteor, 'settings.private.invitationExpirationDate')){ // do some stuff } }
9614354d609a60bf2cbd47835ea954d7d1a21125
Addressed in PR https://github.com/clinical-meteor/node-on-fhir/pull/195
Need an expiration date for when an invitation code expires, so it doesn't persist indefinitely.