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
const format = require('string-format'); | |
// These are the numbers to forward the call to | |
const destinations = ['+1', '+1']; | |
// These are the numbers that will be forwarded to the cell phones | |
const allowedCallers = [ | |
'+1', // | |
]; |
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 (grunt) { | |
// load all grunt tasks needed for this run | |
require('jit-grunt')(grunt); | |
// configurable paths | |
var config = { | |
module: 'force-app', | |
src: 'force-app/main/default', | |
test: 'force-app/test/default', | |
bundles: 'resource-bundles', |