Add venmo authorize, callback and API urls, and a corresponding Venmo controller

This commit is contained in:
Sahat Yalkabov
2014-02-10 19:21:54 -05:00
parent 862ddb33fd
commit 45613cda0e
3 changed files with 14 additions and 0 deletions

View File

@ -413,3 +413,9 @@ exports.postTwilio = function(req, res, next) {
res.redirect('/api/twilio');
});
};
exports.getVenmo = function(req, res, next) {
res.render('api/venmo', {
title: 'Venmo API'
});
};