diff options
author | Peter Kozak <spag@golwen.net> | 2013-03-15 06:02:44 -0400 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-03-15 06:02:44 -0400 |
commit | baf86f285be7c02535c3bc1cd25bf8c69b3b2051 (patch) | |
tree | 7ba5720e5ae39f0316ffd3acf3fd8dbd2fdf6cd7 /app/controllers | |
parent | 3ff8a45b21127612cb545bda382e29d612c7d500 (diff) |
Germans are serious about call progress tones
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/gemeinschaft_setups_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/gemeinschaft_setups_controller.rb b/app/controllers/gemeinschaft_setups_controller.rb index a62df99..4949fa7 100644 --- a/app/controllers/gemeinschaft_setups_controller.rb +++ b/app/controllers/gemeinschaft_setups_controller.rb @@ -62,6 +62,11 @@ class GemeinschaftSetupsController < ApplicationController GsParameter.where(:name => 'ringtone_url').first.update_attributes(:value => "http://#{@gemeinschaft_setup.sip_domain.host}") GsParameter.where(:name => 'user_image_url').first.update_attributes(:value => "http://#{@gemeinschaft_setup.sip_domain.host}/uploads/user/image") + # Set ringback_tone + if @gemeinschaft_setup.country.country_code.to_s == '49' + GsParameter.where(:entity => 'dialplan', :section => 'variables', :name => 'ringback').first.update_attributes(:value => '%(1000,4000,425.0)') + end + # Restart FreeSWITCH if Rails.env.production? require 'freeswitch_event' |