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
At present we have a 301 status code when auth gets redirected:
301
auth_plug/lib/auth_plug.ex
Line 141 in cf6e2eb
302
/profile
This is a quick/easy fix.
lib/auth_plug.ex#L141
The text was updated successfully, but these errors were encountered:
See: https://stackoverflow.com/questions/1393280/http-redirect-301-permanent-vs-302-temporary
Sorry, something went wrong.
4943e7c
up all tests from 301 to 302 #12
ac3e0c8
update to auth_plug 0.9.0 with 302 redirection dwyl/auth_plug#12
c516ced
nelsonic
No branches or pull requests
At present we have a
301
status code when auth gets redirected:auth_plug/lib/auth_plug.ex
Line 141 in cf6e2eb
We actually want a
302
so the browser does not think the auth page is the new/profile
page. 💭This is a quick/easy fix.
lib/auth_plug.ex#L141
to302
301
to302
The text was updated successfully, but these errors were encountered: