Files
fizzy/app/models/comment.rb
T
David Heinemeier Hansson 1d404830f4 Must touch to bust bubble caches
2024-10-19 17:42:06 -07:00

9 lines
220 B
Ruby

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