class Schemas::Fields::PassThroughField

Public Instance Methods

errors(input) click to toggle source
# File lib/schemas/fields/pass_through_field.rb, line 4
def errors(input)
  []
end
parse(input) click to toggle source
# File lib/schemas/fields/pass_through_field.rb, line 8
def parse(input)
  input
end