summaryrefslogtreecommitdiff
path: root/app/controllers/call_routes_controller.rb
diff options
context:
space:
mode:
authorPeter Kozak <spag@golwen.net>2013-03-13 15:41:17 -0400
committerPeter Kozak <spag@golwen.net>2013-03-13 15:41:17 -0400
commitdcdd37036f45d13b7402436ddb1af65c78052ca9 (patch)
treeee858c02b50684975d45021a258742d9292c9ce7 /app/controllers/call_routes_controller.rb
parent1ea544f5d29d3bc43bf1d7ddfd1f7692f5cbcdda (diff)
routing test view
Diffstat (limited to 'app/controllers/call_routes_controller.rb')
-rw-r--r--app/controllers/call_routes_controller.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/call_routes_controller.rb b/app/controllers/call_routes_controller.rb
index 2dcd648..50e7849 100644
--- a/app/controllers/call_routes_controller.rb
+++ b/app/controllers/call_routes_controller.rb
@@ -87,6 +87,13 @@ class CallRoutesController < ApplicationController
end
end
+ def test
+ sip_account = SipAccount.where(:id => params[:sip_account_id]).first;
+ destination_number = params[:destination_number]
+ routing_table = params[:routing_table]
+ @route_test = CallRoute.test_route(routing_table, {'caller.destination_number' => destination_number, 'caller.auth_account_type' => 'SipAccount', 'caller.auth_account_uuid' => sip_account.uuid})
+ end
+
private
def call_route_parameter_params
params.require(:call_route).permit(:routing_table, :name, :endpoint_type, :endpoint_id, :position)