Very frustrating for the last few days.
I have a rails app with Devise installed where I generated a new User model and I generated Devise views as well.
This h
Be careful if you nave namespaced routes to declare the devise_scope a little different:
namespace :api, defaults: {format: 'json'} do namespace :v1 do devise_scope :api_v1_user do ... end end end