Add customer_id to outgoing call JSON

Stephen Paul Weber created

Change summary

web.rb | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

Detailed changes

web.rb 🔗

@@ -283,7 +283,8 @@ class Web < Roda
 						r.json do
 							{
 								from: c.registered?.phone,
-								to: params["to"]
+								to: params["to"],
+								customer_id: c.customer_id
 							}.to_json
 						end