Files
fizzy/app/controllers/notifications/mark_all_reads_controller.rb
T
2025-01-21 14:37:41 +00:00

6 lines
138 B
Ruby

class Notifications::MarkAllReadsController < ApplicationController
def create
Current.user.notifications.unread.read_all
end
end