Fixed typo and added payment.target.user to recentPayments table in case User ID was used instead of email or phone # to send a payment

pull/2/head
Sahat Yalkabov 2014-02-11 08:14:50 -05:00
parent 241baf179a
commit c5a73443d6
2 changed files with 5 additions and 4 deletions

View File

@ -428,6 +428,7 @@ exports.getVenmo = function(req, res, next) {
getRecentPayments: function(done) {
request.get({ url: 'https://api.venmo.com/v1/payments?' + query, json: true }, function(err, request, body) {
done(err, body);
});
}
},
@ -444,7 +445,7 @@ exports.getVenmo = function(req, res, next) {
exports.postVenmo = function(req, res, next) {
req.assert('user', 'Phone, Email or Venmo User ID cannot be blank').notEmpty();
req.assert('note', 'Please enter a message to accompany the payment').notEmpty();
req.assert('amount', 'They amount you want to pay cannot be blank').notEmpty();
req.assert('amount', 'The amount you want to pay cannot be blank').notEmpty();
var errors = req.validationErrors();

View File

@ -61,7 +61,7 @@ block content
br
h3 Recent Payments
table.table.table-striped.table-bordered
table.table.table-striped.table-condensed.table-bordered
thead
tr
th To
@ -73,8 +73,8 @@ block content
if recentPayments.length
for payment in recentPayments
tr
td= payment.target.phone || payment.target.email
td= payment.amount
td= payment.target.phone || payment.target.email || payment.target.user
td $#{payment.amount}
td= payment.status
td= payment.date_created
td= payment.note