Files
fizzy/app/models/comment/searchable.rb
T
2025-07-24 16:47:57 +02:00

16 lines
286 B
Ruby

module Comment::Searchable
extend ActiveSupport::Concern
included do
include ::Searchable
end
def search_embedding_content
<<~CONTENT
Card title: #{card.title}
Content: #{body.to_plain_text}
Created by: #{creator.name}}
CONTENT
end
end