class InsightSummary < ApplicationRecord
  belongs_to :groupable, polymorphic: true
  belongs_to :interview_question
  belongs_to :master_section, optional: true

  def summary_markdown
    ApplicationController.helpers.markdown_render(summary)
  end
end
