Files
fizzy/app/controllers/notifications/readings_controller.rb
T
2025-04-16 16:41:22 +02:00

12 lines
281 B
Ruby

class Notifications::ReadingsController < ApplicationController
def create
@notification = Current.user.notifications.find(params[:id])
@notification.read
end
def create_all
Current.user.notifications.unread.read_all
redirect_to notifications_path
end
end