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

10 lines
255 B
Ruby

class Comment < ApplicationRecord
include Messageable, Notifiable, Searchable
belongs_to :creator, class_name: "User", default: -> { Current.user }
searchable_by :body_plain_text, using: :comments_search_index, as: :body
has_markdown :body
end