Method: Devise::Models::Lockable#send_unlock_instructions

Defined in:
lib/devise/models/lockable.rb

#send_unlock_instructionsObject

Send unlock instructions by email



74
75
76
77
78
79
80
# File 'lib/devise/models/lockable.rb', line 74

def send_unlock_instructions
  raw, enc = Devise.token_generator.generate(self.class, :unlock_token)
  self.unlock_token = enc
  save(validate: false)
  send_devise_notification(:unlock_instructions, raw, {})
  raw
end