* Replaced granular emails with the default one * Set reply to header in emails * Extract shared_examples from NotifyMailer * Removed unused code * Replaced SiteConfig with Settings::General * Fixes related to replacing SiteConfig with Settings * Removed duplicate line from specs
26 lines
834 B
Ruby
26 lines
834 B
Ruby
module Authentication
|
|
module Errors
|
|
PREVIOUSLY_SUSPENDED_MESSAGE = "It appears that your previous %<community_name>s " \
|
|
"account was suspended. As such, we've taken measures to prevent you from " \
|
|
"creating a new account with %<community_name>s and its community. If you " \
|
|
"think that there has been a mistake, please email us at %<community_email>s, " \
|
|
"and we will take another look.".freeze
|
|
|
|
class Error < StandardError
|
|
end
|
|
|
|
class ProviderNotFound < Error
|
|
end
|
|
|
|
class ProviderNotEnabled < Error
|
|
end
|
|
|
|
class PreviouslySuspended < Error
|
|
def message
|
|
format(PREVIOUSLY_SUSPENDED_MESSAGE,
|
|
community_name: Settings::Community.community_name,
|
|
community_email: Settings::General.email_addresses[:default])
|
|
end
|
|
end
|
|
end
|
|
end
|