Newer
Older
dmpopidor / app / controllers / concerns / allowed_question_formats.rb
module AllowedQuestionFormats
  
  private
  
  # The QuestionFormat "Multi select box" is no longer being used for new templates
  def allowed_question_formats
    QuestionFormat.where.not(title: "Multi select box").order(:title)
  end
end