Newer
Older
dmpopidor / app / models / question_format.rb
@Damodar Damodar on 10 Aug 2016 220 bytes dropdown and org language setting
class QuestionFormat < ActiveRecord::Base
  attr_accessible :title, :description, :as => [:default, :admin]
  
  #associations between tables
  has_many :questions
  
   def to_s
    "#{title}"
  end
  
  
end