Newer
Older
dmpopidor / app / models / suggested_answer.rb
@Marta Ribeiro Marta Ribeiro on 3 Jun 2016 270 bytes DMPonline4 - RAILS 4.0 (#4)
class SuggestedAnswer < ActiveRecord::Base

	belongs_to :organisation
	belongs_to :question
	
	accepts_nested_attributes_for :question
	
	attr_accessible :organisation_id, :question_id, :text, :is_example, :as => [:default, :admin]
	
	
	def to_s
    "#{text}"
  end

end