Files
fizzy/app/models/comment.rb
T
2024-10-23 14:10:04 -06:00

9 lines
232 B
Ruby

class Comment < ApplicationRecord
include Searchable, Threadable
belongs_to :bubble, touch: true
belongs_to :creator, class_name: "User", default: -> { Current.user }
searchable_by :body, using: :comments_search_index
end