class StepValidation < ActiveRecord::Base
belongs_to :agent_step
has_many :submission_contents
belongs_to :validation, polymorphic: true
def icon
case self.validation_type
when 'ValidationText'
return ''
when 'ValidationImage'
return ''
else
return ''
end
end
end