Files
fizzy/app/controllers/notifications/trays_controller.rb
T
2025-01-16 17:48:38 +00:00

6 lines
155 B
Ruby

class Notifications::TraysController < ApplicationController
def show
@notifications = Current.user.notifications.unread.ordered.limit(20)
end
end