簡體   English   中英

設計忘記密碼設置

[英]devise forgot password setup

我是rails的新手,並且一直在嘗試構建應用程序。 我最近為facebook安裝了devise和omniauth,並在一段時間后取得了巨大的成功。 當我讀到設計時,我注意到Devise內置了一個“忘記密碼”模塊。

我已經瀏覽過互聯網,因為我的生活還沒弄清楚如何設置它。 有沒有指導?我已經工作了幾個小時,但我沒有真正的結果。 我該如何設置? 我正在使用rails 4.0和最新版本的設計。

謝謝,

路線

Omrails::Application.routes.draw do
resources :boards

resources :pins

get 'about' => "pages#about"

root :to => 'pins#index'
resources :tests, :birthdays
devise_for :users, :controllers => { :omniauth_callbacks => "users/omniauth_callbacks"  }
end

設計遷移:

class DeviseCreateUsers < ActiveRecord::Migration
def change
create_table(:users) do |t|
  ## Database authenticatable
  t.string :email,              :null => false, :default => ""
  t.string :encrypted_password, :null => false, :default => ""

  ## Recoverable
  t.string   :reset_password_token
  t.datetime :reset_password_sent_at

  ## Rememberable
  t.datetime :remember_created_at

  ## Trackable
  t.integer  :sign_in_count, :default => 0, :null => false
  t.datetime :current_sign_in_at
  t.datetime :last_sign_in_at
  t.string   :current_sign_in_ip
  t.string   :last_sign_in_ip

  ## Confirmable
  # t.string   :confirmation_token
  # t.datetime :confirmed_at
  # t.datetime :confirmation_sent_at
  # t.string   :unconfirmed_email # Only if using reconfirmable

  ## Lockable
  # t.integer  :failed_attempts, :default => 0, :null => false # Only if lock strategy is :failed_attempts
  # t.string   :unlock_token # Only if unlock strategy is :email or :both
  # t.datetime :locked_at


  t.timestamps
end

add_index :users, :email,                :unique => true
add_index :users, :reset_password_token, :unique => true
# add_index :users, :confirmation_token,   :unique => true
# add_index :users, :unlock_token,         :unique => true
end
end

User.rb

class User < ActiveRecord::Base 

 # Include default devise modules. Others available are:
 # :token_authenticatable, :confirmable,
 # :lockable, :timeoutable and :omniauthable
 devise :database_authenticatable, 
     :registerable, 
     :rememberable, 
     :trackable, 
     :recoverable,
     :validatable, 
     :omniauthable, 
     :omniauth_providers => [:facebook]


 # Setup accessible (or protected) attributes for your model
 attr_accessible :email, :password, :password_confirmation, :remember_me, :name,    :birthday, :sex, :address, :mobile, :provider, :uid

 has_many :pins, :dependent => :destroy
has_many :boards, :dependent => :destroy
def self.find_for_facebook_oauth(auth, signed_in_resource=nil)
user = User.where(:provider => auth.provider, :uid => auth.uid).first
unless user
  user = User.create(name:auth.extra.raw_info.name,
                       provider:auth.provider,
                       uid:auth.uid,
                       email:auth.info.email,
                       password:Devise.friendly_token[0,20])
end
user
end
end

Devise由10個模塊組成,您正在尋找的模塊是可恢復的。 在您的設計模型中,您需要添加:recoverable設計的:recoverable屬性。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM