在我的应用程序中,所有路由都限定为一个区域设置,该用户已选择如下:
scope ":locale", locale: /#{SpreeI18n::Config.supported_locales.join('|')}/ do
devise_for :users, skip: :omniauth_callbacks
get '/', to: 'homepage#index', :as => :homepage
end
当我想发送重置密码指令User.find(1).send_reset_password_instructions
时,有一个问题:
Devise::Mailer#reset_password_instructions: processed outbound mail in 4249.9ms
ActionView::Template::Error: No route matches {:action=>"edit", :controller=>"devise/passwords", :reset_password_token=>"-zyuNkscVkwFn2awdm27"} missing required keys: [:locale]
如何传递语言环境以便发送重置令牌?