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
var textClient = require('twilio')(process.env.TWILIO_ACCOUNT_SID, process.env.TWILIO_AUTH_TOKEN) | |
var sendText = textClient.messages.create({ | |
to: phone, | |
from: taskiPhone, | |
body: messageBody | |
}, function (err, message) { | |
if (err) { | |
debug('Twilio error!') | |
console.log('texting error: ' + messageBody.length + ' chars') | |
console.log(err) |
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
[ | |
{ | |
"user": "Veronica Letourneau", | |
"email": "[email protected]", | |
"referred": "[email protected]", | |
"date": "9/8/2017", | |
"status": "sent", | |
"converted": false | |
}, | |
{ |
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
// generate the payment blob we will base the charge on | |
this.createJobBrief = function(shift, worker, confirmedShiftData, employer, employerReview) { | |
// in the case of ch_1AGu3MCOsXOJGjx5HT3TBu2n, shift.pay was 16$ | |
// employers can update the hours worked, hence confirmedShiftData | |
// there's an excessive amount of coercing to Number() here... | |
// I should probably switch these to Math.round() ;P | |
let amount_owed = Number((Number(shift.pay) * Number(confirmedShiftData.updatedHours)).toFixed(2)) | |
let taxes = Number((Number(amount_owed) * 0.05).toFixed(2)); | |
let fee = Number(Number(amount_owed * 0.20).toFixed(2)); |