class SectionSummary < ApplicationRecord
  belongs_to :groupable, polymorphic: true
  belongs_to :master_section

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