Files
fizzy/app/controllers/notifications_controller.rb
T
2025-01-24 17:42:36 +00:00

10 lines
241 B
Ruby

class NotificationsController < ApplicationController
def index
set_page_and_extract_portion_from Current.user.notifications.read.ordered
if @page.first?
@unread = Current.user.notifications.unread.ordered
end
end
end