We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In section https://tutorials.railsapps.org/tutorials/rails3-bootstrap-devise-cancan#authentication there is an argument for /config/initializers/devise.rb to contain the following line
/config/initializers/devise.rb
config.sign_out_via = Rails.env.test? ? :get : :delete
However commenting this line out does not trigger any (cucumber) tests to fail.
But when the line is changed to
config.sign_out_via = :delete
Then there are some cucumber tests to fail.
That is not in alignment with the explanation found in https://tutorials.railsapps.org/tutorials/rails3-bootstrap-devise-cancan#authentication
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In section https://tutorials.railsapps.org/tutorials/rails3-bootstrap-devise-cancan#authentication there is an argument for
/config/initializers/devise.rb
to contain the following lineHowever commenting this line out does not trigger any (cucumber) tests to fail.
But when the line is changed to
Then there are some cucumber tests to fail.
That is not in alignment with the explanation found in https://tutorials.railsapps.org/tutorials/rails3-bootstrap-devise-cancan#authentication
The text was updated successfully, but these errors were encountered: