diff --git a/app/controllers/notifications_controller.rb b/app/controllers/notifications_controller.rb index 83e5db488..cbce6a92d 100644 --- a/app/controllers/notifications_controller.rb +++ b/app/controllers/notifications_controller.rb @@ -5,5 +5,10 @@ class NotificationsController < ApplicationController 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