Skip to content

Instantly share code, notes, and snippets.

@krakatoa
Created October 18, 2014 21:31
Show Gist options
  • Save krakatoa/6ff53bc4357b9c53f21a to your computer and use it in GitHub Desktop.
Save krakatoa/6ff53bc4357b9c53f21a to your computer and use it in GitHub Desktop.
Adhearsion.router do
route 'Special origin', SpecialOriginController, from: ['sip:100@ahn.com', 'sip:101@ahn.com']
route 'Special destination', SpecialDestinationController, to: 'sip:special@ahn.com'
route 'Unavailable hours', UnavailableHoursController, lambda { |call| Time.now.hour > 20 }
route 'default', DefaultController
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment