Files
fizzy/app/models/event/comment.rb
T
2025-01-13 14:21:47 +00:00

12 lines
187 B
Ruby

module Event::Comment
extend ActiveSupport::Concern
included do
store_accessor :particulars, :comment_id
end
def comment
@comment ||= Comment.find(comment_id)
end
end