2024-12-03 10:27:03 -03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
module DiscourseAi
|
|
|
|
|
module PostExtensions
|
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
|
|
prepended do
|
|
|
|
|
has_many :classification_results, as: :target
|
|
|
|
|
|
|
|
|
|
has_many :sentiment_classifications,
|
|
|
|
|
-> { where(classification_type: "sentiment") },
|
|
|
|
|
class_name: "ClassificationResult",
|
|
|
|
|
as: :target
|
2025-06-02 14:29:20 -03:00
|
|
|
|
|
|
|
|
has_many :inferred_concept_posts
|
|
|
|
|
has_many :inferred_concepts, through: :inferred_concept_posts
|
2024-12-03 10:27:03 -03:00
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|