-
I added this to my controller:
I am logged in as a new account that hasn't been verified yet. Verification is working, but I haven't done it for this user. I am able to access the route protected by the above before action. Is this expected? |
Beta Was this translation helpful? Give feedback.
Answered by
janko
Dec 29, 2023
Replies: 1 comment
-
Yes, if you're logged in, then you're able to access protected routes. You can either set |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
pboling
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, if you're logged in, then you're able to access protected routes. You can either set
create_account_autologin?
tofalse
to prevent login, or not enable theverify_account_grace_period
feature.