|
class StepSubmission < ActiveRecord::Base
belongs_to :agent_step
belongs_to :validated_by, :class_name => "User"
has_many :submission_contents, :dependent => :destroy
has_many :submissions, :through => :submission_content
accepts_nested_attributes_for :submission_contents, allow_destroy:true
end
|