class ActiveInteraction::Extras::Filters::UUIDFilter

Constants

REGEX

Public Instance Methods

convert(value) click to toggle source
Calls superclass method
# File lib/active_interaction/extras/filters/uuid_filter.rb, line 12
def convert(value)
  super&.presence
end
matches?(value) click to toggle source
Calls superclass method
# File lib/active_interaction/extras/filters/uuid_filter.rb, line 8
def matches?(value)
  super && REGEX.match?(value)
end