module CustomFields::Types::RelationshipDefault::Field

Public Instance Methods

is_relationship?() click to toggle source
# File lib/custom_fields/types/relationship_default.rb, line 17
def is_relationship?
  method_name = :"#{type}_is_relationship?"
  respond_to?(method_name) && send(method_name)
end

Protected Instance Methods

ensure_class_name_security() click to toggle source
# File lib/custom_fields/types/relationship_default.rb, line 24
def ensure_class_name_security
  true
  # FIXME: to be overridden in the target application
end