a5de4863fa
cc @kevinmcconnell
9 lines
200 B
Ruby
9 lines
200 B
Ruby
class Cards::ReadingsController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
@notifications = Current.user.notifications.where(card: @card)
|
|
@notifications.each(&:read)
|
|
end
|
|
end
|