Files
fizzy/app/controllers/notifications/trays_controller.rb
T
2025-09-09 12:39:28 +02:00

8 lines
187 B
Ruby

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