6135909b7e
No need to broadcast everything again
9 lines
192 B
Ruby
9 lines
192 B
Ruby
class Cards::ReadingsController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
@notification = Current.user.notifications.find_by(card: @card)
|
|
@notification.read
|
|
end
|
|
end
|