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
The documentation (https://github.com/OWASP/railsgoat/wiki/A7-Missing-Function-Level-Access-Control--(Admin-Controller)) utilizes before_filter which has been deprecated in Rails 5.
before_filter
That aside, the unit test still fails because it's expecting the path to be / not /dashboard/home:
/
/dashboard/home
Failure/Error: expect(current_path).to eq("/") expected: "/" got: "/dashboard/home"
The text was updated successfully, but these errors were encountered:
Updated unit test for url_access to have correct path, allowing users…
495df2c
… to pass the test as part of OWASP#318
No branches or pull requests
The documentation (https://github.com/OWASP/railsgoat/wiki/A7-Missing-Function-Level-Access-Control--(Admin-Controller)) utilizes
before_filter
which has been deprecated in Rails 5.That aside, the unit test still fails because it's expecting the path to be
/
not/dashboard/home
:The text was updated successfully, but these errors were encountered: