npm install -g formio/formio-cli#master
formio bind POST https://myapp.form.io/myform ./middleware.js
Last active
January 28, 2016 03:22
-
-
Save travist/b68d3e38cde509e295df to your computer and use it in GitHub Desktop.
install.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function(req, next) { | |
// Append .example.com to emails for testing purposes... | |
req.body.data.email = req.body.data.email + '.example.com'; | |
next(null); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment