Files
fizzy/app/controllers/cards/readings_controller.rb
T
2025-04-22 11:26:56 +02:00

9 lines
209 B
Ruby

class Cards::ReadingsController < ApplicationController
include CardScoped
def create
@notifications = Current.user.notifications.where(source: @card.events)
@notifications.each(&:read)
end
end