Files
fizzy/app/controllers/notifications_controller.rb
T
2025-01-13 14:21:47 +00:00

6 lines
149 B
Ruby

class NotificationsController < ApplicationController
def index
@notifications = Current.user.notifications.unread.ordered.limit(20)
end
end