I am using the default Devise controllers. I assumed when a user created a new account, they’d be redirected to the sign_in page and shown the flash message for signed_up_but_unconfirmed
. The redirect is happening, but the flash message being displayed is unauthenticated
.
Why would I need to tell Devise to show the signed_up_but_unconfirmed
message when new accounts are created? That seems like the way it should work out of the box.
And more importantly, how do I configure it to show signed_up_but_unconfirmed
?
(I asked this on Stack Overflow, but have gotten no love.)