タイトルには、ユーザー名とパスワードのフィールドを使用して正しく登録しています。ただし、ログインしようとすると'Invalid Email, Login or password'
が表示されます。サインアップに成功しました。ログインに失敗しました。
=> #<ActiveRecord::Relation [#<User id: 9, email: "", created_at: "2016-12-01 16:32:20", updated_at: "2016-12-01 16:32:20", username: "benjamin">]>
アプリケーションコントローラ:
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
before_action :authenticate_user!
before_action :configure_permitted_parameters, if: :devise_controller?
protected
def configure_permitted_parameters
added_attrs = [:username, :email, :password, :password_confirmation, :remember_me]
devise_parameter_sanitizer.permit :sign_up, keys: [:username, :password]
devise_parameter_sanitizer.permit :account_update, keys: [:username, :password]
end
end
User.rb:
class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
has_many :stories
validates :username, :presence => true, :uniqueness => { :case_sensitive => false}
validates_format_of :username, with: /^[a-zA-Z0-9_\.]*$/, :multiline => true
attr_accessor :login
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :authentication_keys => {email: true, login: false}
def self.find_for_database_authentication(warden_conditions)
conditions = warden_conditions.dup
if login = conditions.delete(:login)
where(conditions.to_h).where(["lower(username) = :value OR lower(email) = :value", { :value => login.downcase }]).first
elsif conditions.has_key?(:username) || conditions.has_key?(:email)
where(conditions.to_h).first
end
end
def email_required?
false
end
def email_changed?
false
end
end
レールコンソールに見られるように、ユーザー名は、しかし、パスワードが暗号化されていないか、ここに示した、保存されています関連するDBファイル:
class DeviseCreateUsers < ActiveRecord::Migration[5.0]
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 null: false
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
/
class RemoveEmailUniquenessFromUser < ActiveRecord::Migration[5.0]
def change
change_column :users, :email, :string, unique: false
end
end
/
class RemoveIndexFromUsersEmail < ActiveRecord::Migration[5.0]
def change
remove_index :users, :email
end
end
編集:まだ
I have changed devise params to:
def configure_permitted_parameters
added_attrs = [:username, :email, :password, :password_confirmation, :remember_me]
devise_parameter_sanitizer.permit :sign_in, keys: [:username, :password]
devise_parameter_sanitizer.permit :sign_up, keys: [:username, :password, :password_confirmation]
devise_parameter_sanitizer.permit :account_update, keys: [:username, :password, :password_confirmation]
end
、 '無効、電子メール、ログインまたはパスワード'
変更する必要はありますか?私は、私の編集した投稿で、上記のパラメータを設定しようとしました。残念ながら、まだ動作していません。 – Benjamints
残念ながらまだ動作していません。 – Benjamints
コンソールに入り、 'User.create username: '何でも'を実行すると、パスワード: 'password''あなたはどうしますか?それはパスワードを保存しますか?その後、そのユーザーと一緒にサイトにログインできますか? – Brad