8 lines
150 B
Ruby
8 lines
150 B
Ruby
class Cards::ReadingsController < ApplicationController
|
|
include CardScoped
|
|
|
|
def create
|
|
@notifications = @card.read_by(Current.user)
|
|
end
|
|
end
|