Skip to content

Instantly share code, notes, and snippets.

@edatkinvey
Last active October 6, 2015 16:28
Show Gist options
  • Save edatkinvey/479f76a9d093feb4207e to your computer and use it in GitHub Desktop.
Save edatkinvey/479f76a9d093feb4207e to your computer and use it in GitHub Desktop.
function onPreSave(request, response, modules) {
if (request.body.email === undefined) {
return response.error("Validation Failed, registering users requires an email");
}
if (request.body.email.toLowerCase().indexOf("@kinvey.com") == -1){
return response.error("Validation Failed, Registration is only available for employees!");
}
response.continue();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment