Class: Telephony::VoicemailsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/telephony/voicemails_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



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