Module: SimplyAuthorized::UserModel
- Defined in:
- lib/simply_authorized/user_model.rb
Defined Under Namespace
Modules: ClassMethods, InstanceMethods, PrepMethod
Class Method Summary collapse
Class Method Details
.included(base) ⇒ Object
4 5 6 7 8 9 10 |
# File 'lib/simply_authorized/user_model.rb', line 4 def self.included(base) base.extend(PrepMethod) # base.send(:include, InstanceMethods) # base.class_eval do # alias_method_chain :reset_persistence_token, :uniqueness # end end |