Questions tagged [devise-recoverable]
33 questions
0
votes
1 answer
devise reset password unknown format
I use the devise and simple_token_authentication. The basic format for queries - json.
my routes.rb:
Rails.application.routes.draw do
devise_for :users, controllers: {
registrations: 'users/registrations',
passwords:…

Marsel.V
- 1,015
- 1
- 12
- 28
0
votes
1 answer
Devise Recoverable says Email can't be blank on Rails 4/5
Given I am a registered user
And I am not logged in
When I visit "http://localhost:3000/member/password/edit?reset_password_token=BVE492WU1YqMp6nmxCX4"
And I fill in "asdfasdf" in "user[:password]
And I fill in "asdfasdf" in…

Jan
- 12,992
- 9
- 53
- 89
0
votes
1 answer
Resetting user password when devise_for routes are in scope
In my application all routes are scoped to a locale, that user has selected like this:
scope ":locale", locale: /#{SpreeI18n::Config.supported_locales.join('|')}/ do
devise_for :users, skip: :omniauth_callbacks
get '/', to: 'homepage#index', :as…

pmichna
- 4,800
- 13
- 53
- 90