ece517-p3/expertiza

View on GitHub
app/models/quiz_response.rb

Summary

Maintainability
A
0 mins
Test Coverage
class QuizResponse < Response
  belongs_to :assignment
  belongs_to :questionnaire
  belongs_to :question
  belongs_to :participant
  belongs_to :response_map, foreign_key: :map_id
  belongs_to :quiz_response_map, foreign_key: :map_id

  # validates :response, :presence => true
end