Class: Telephony::VoicemailsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Telephony::VoicemailsController
- Defined in:
- app/controllers/telephony/voicemails_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
5 6 7 8 9 10 11 |
# File 'app/controllers/telephony/voicemails_controller.rb', line 5 def index @voicemails = Voicemail.most_recent.filter params.slice(:page, :csr_id) render json: { items: @voicemails, total_count: @voicemails.total_count } end |