Files
fizzy/app/controllers/notifications_controller.rb
T
2025-04-16 16:21:31 +02:00

15 lines
343 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
respond_to do |format|
format.turbo_stream if current_page_param
format.html
end
end
end