master
1class EmailsController < ApplicationController
2  def index
3    @emails = paginate(current_user.received_emails.order(created_at: :desc))
4  end
5end