Sha256: 11832f58c18d8915002faa298bede23940c0c777c3b2679d930a69d3a08533ea
Contents?: true
Size: 660 Bytes
Versions: 124
Compression:
Stored size: 660 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| options_for_template_input v.template_input } }, :if => proc { |v| v.template_input.input_type == 'user' && v.template_input.options_array.present? } class << self private def options_for_template_input(template_input) options = template_input.options_array options += [''] unless template_input.required? options end end end
Version data entries
124 entries across 124 versions & 1 rubygems