0c526db57e
This link is shown when a user tries to login with an unconfirmed email address and the grace period has expired
7 lines
153 B
Ruby
7 lines
153 B
Ruby
# frozen_string_literal: true
|
|
|
|
module SessionsHelper
|
|
def unconfirmed_email?
|
|
flash[:alert] == t(:unconfirmed, scope: [:devise, :failure])
|
|
end
|
|
end
|