I am using Devise in my Rails app. I have overwrited the SessionsController like this:
class SessionsController < Devise::SessionsController
def create
resource = warden.authenticate!(:scope => resource_name, :recall => "# {controller_path}#failure")
sign_in(resource_name, resource)
return render :json => {:success => true, :content => url_for(:controller => 'dashboard', :action => 'show_step')}
end
def failure
@@log.debug "begin failure"
return render :json => {:success => false}
end
end
In my ApplicationController I have this code about locale:
before_filter :set_locale
def set_locale
I18n.locale = params[:locale] if params.include?('locale') && !Language.where(:two_letter_code => params[:locale]).empty?
end
def default_url_options(options = {})
options.merge!({ :locale => I18n.locale })
end
And in my routes.rb I have:
devise_for :members, :path_names => {:sign_up => "register"}, :controllers => {sessions: 'sessions', registrations: 'registrations'}
When I go to "members/sign_in" the locale param is not appears in the URL...
members/sign_in?
However, in the rest of URLs, the param appears correctly like that:
some_controller/some_action?locale=en
My new SessionsController inherits of Devise::SessionsController but I am not sure that it is the cause.
Any ideas? thanks a lot.