diff options
author | Peter Kozak <spag@golwen.net> | 2013-03-13 10:03:01 -0400 |
---|---|---|
committer | Peter Kozak <spag@golwen.net> | 2013-03-13 10:03:01 -0400 |
commit | 3e1092b532d34141d77f1e9176831e2bf82845ac (patch) | |
tree | 2219bab50e9cef4ff54462186f8054b429080074 /app/models/call.rb | |
parent | 1a9b4ef6d9ebbe77ba113d960d85c7097ae3368c (diff) |
load freeswitch_event module before use
Diffstat (limited to 'app/models/call.rb')
-rw-r--r-- | app/models/call.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/call.rb b/app/models/call.rb index 61d10ce..a8a0d7f 100644 --- a/app/models/call.rb +++ b/app/models/call.rb @@ -54,12 +54,12 @@ class Call < ActiveRecord::Base return nil end + require 'freeswitch_event' if auth_account FreeswitchAPI.api('uuid_setvar', channel_uuid, 'gs_auth_account_type', auth_account.class.name) FreeswitchAPI.api('uuid_setvar', channel_uuid, 'gs_auth_account_uuid', auth_account.uuid) end - require 'freeswitch_event' return FreeswitchAPI.api_result(FreeswitchAPI.api('uuid_transfer', channel_uuid, destination)) end @@ -85,5 +85,5 @@ class Call < ActiveRecord::Base def get_variable_bleg(variable_name) return get_variable_from_uuid(self.b_uuid, variable_name); end - + end |