module Warden::Delegated::Model

Public Class Methods

included(base) click to toggle source
# File lib/warden/delegated/model.rb, line 8
def self.included(base)
  base.extend ClassMethods
end

Public Instance Methods

authenticatable_salt() click to toggle source
# File lib/warden/delegated/model.rb, line 21
def authenticatable_salt
  encrypted_password[0,29] if encrypted_password
end