Sha256: 8a7e4fbae70491bcae08a292e211fc422cd5fcc343816fbe7b20bc6a1351084a
Contents?: true
Size: 438 Bytes
Versions: 16
Compression:
Stored size: 438 Bytes
Contents
class TemplateInvocationInputValue < ApplicationRecord belongs_to :template_invocation belongs_to :template_input validates :value, :presence => true, :if => proc { |v| v.template_input.required? || v.value.nil? } validates :value, :inclusion => { :in => proc { |v| v.template_input.options_array } }, :if => proc { |v| v.template_input.input_type == 'user' && v.template_input.options_array.present? } end
Version data entries
16 entries across 16 versions & 1 rubygems