# frozen_string_literal: true

# HighlightTheme model
class HighlightTheme < ApplicationRecord
  belongs_to :respondent_category
  has_many :transcript_highlights, dependent: :nullify

  acts_as_list scope: :respondent_category_id
end
