デバイスとレール 4 での登録プロセス用のカスタム コントローラーを作成しようとしています。params ハッシュをトレースしています。
logger.info "Test:" << params.to_yaml
utf8: ✓
authenticity_token: VFWT....
user: !ruby/hash:ActionController::Parameters
user_name: test
first_name: test
last_name: test
display_name: test
email: test@gmail.com
password: testpassword
password_confirmation: testpassword
commit: Sign up
action: create
controller: registrations
しかし、コントローラーのハッシュにアクセスしようとすると
no implicit conversion of nil into String
logger.info "Test:" << params[:email]
私は何を間違っていますか?