The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/app/lib/server/functions/checkEmailAvailability.js

9 lines
318 B

import { Meteor } from 'meteor/meteor';
import s from 'underscore.string';
import { escapeRegExp } from '@rocket.chat/string-helpers';
export const checkEmailAvailability = function (email) {
return !Meteor.users.findOne({
'emails.address': { $regex: new RegExp(`^${s.trim(escapeRegExp(email))}$`, 'i') },
});
};