2024-10-18 18:01:39 -03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
module DiscourseAi
|
|
|
|
|
module TopicExtensions
|
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
2024-11-25 12:24:02 -03:00
|
|
|
prepended do
|
|
|
|
|
has_many :ai_summaries, as: :target
|
|
|
|
|
|
|
|
|
|
has_one :ai_gist_summary,
|
|
|
|
|
-> { where(summary_type: AiSummary.summary_types[:gist]) },
|
|
|
|
|
class_name: "AiSummary",
|
|
|
|
|
as: :target
|
|
|
|
|
end
|
2024-10-18 18:01:39 -03:00
|
|
|
end
|
|
|
|
|
end
|