blob: 085db3dc505e1cbec50dbcc8c54dd0f11725fb9a (
plain)
1
2
3
4
5
6
7
|
class FreeswitchVoicemailMsgsController < ApplicationController
load_and_authorize_resource :sip_account
load_and_authorize_resource :freeswitch_voicemail_msg, :through => [:sip_account]
def index
end
end
|