mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 05:06:04 +01:00
5 lines
145 B
Ruby
5 lines
145 B
Ruby
class InboxController < ApplicationController
|
|
def show
|
|
@inbox = Inbox.where(user: current_user).order(:created_at).reverse_order
|
|
end
|
|
end
|