diff options
Diffstat (limited to 'app/controllers/freeswitch_voicemail_msgs_controller.rb')
-rw-r--r-- | app/controllers/freeswitch_voicemail_msgs_controller.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/freeswitch_voicemail_msgs_controller.rb b/app/controllers/freeswitch_voicemail_msgs_controller.rb new file mode 100644 index 0000000..085db3d --- /dev/null +++ b/app/controllers/freeswitch_voicemail_msgs_controller.rb @@ -0,0 +1,7 @@ +class FreeswitchVoicemailMsgsController < ApplicationController + load_and_authorize_resource :sip_account + load_and_authorize_resource :freeswitch_voicemail_msg, :through => [:sip_account] + + def index + end +end |