mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:26:03 +01:00
7 lines
182 B
Ruby
7 lines
182 B
Ruby
class InboxController < ApplicationController
|
|
before_filter :authenticate_user!
|
|
|
|
def show
|
|
@inbox = Inbox.where(user: current_user).order(:created_at).reverse_order
|
|
end
|
|
end
|