Files
fizzy/app/controllers/cards/readings_controller.rb
T
2025-06-16 15:05:47 +01:00

10 lines
174 B
Ruby

class Cards::ReadingsController < ApplicationController
include CardScoped
skip_writer_affinity
def create
@notifications = @card.read_by(Current.user)
end
end