module ActiveLdap::Callbacks::CallbackedInstantiatable

Public Instance Methods

instantiate(record) click to toggle source
Calls superclass method
# File lib/active_ldap/callbacks.rb, line 36
def instantiate(record)
  object = super(record)
  object.run_callbacks(:find)
  object.run_callbacks(:initialize)
  object
end