Files
fizzy/app/controllers/notifications_controller.rb
T
2025-01-16 17:48:38 +00:00

7 lines
184 B
Ruby

class NotificationsController < ApplicationController
def index
@read = Current.user.notifications.read.ordered
@unread = Current.user.notifications.unread.ordered
end
end