私は Devise を初めて使用しましたが、メール アドレスを認証キーとして使用することで問題なく動作しています。ただし、代わりにユーザー名が必要なユースケースがあり、それを機能させることができないようです。
ユーザーテーブルに文字列列「username」を追加し、サインインフォームのフィールドを :email から :username に変更し、devise.rb の認証キーを :username に変更しました。 「電子メール アドレスを入力してください」というメッセージが表示されます。
私は何を間違っていますか?
**new.html.erb**
<div><%= f.label :username %><br />
<%= f.email_field :username %></div>
**User.rb**
class User < ActiveRecord::Base
# Include default devise modules. Others available are:
# :token_authenticatable, :encryptable, :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :trackable, :validatable, :authentication_keys => [:username]
# Setup accessible (or protected) attributes for your model
attr_accessible :email, :password, :password_confirmation, :remember_me, :username
# attr_accessible :title, :body
end
**devise.rb**
config.authentication_keys = [ :username ]