retrospring/app/controllers/inbox_controller.rb

6 lines
145 B
Ruby
Raw Normal View History

2014-11-11 07:10:41 +01:00
class InboxController < ApplicationController
def show
@inbox = Inbox.where(user: current_user).order(:created_at).reverse_order
end
end