This PR adds Google OAuth for all existing users, allowing users to log in or sign up via their Google account. --------- Co-authored-by: Pranav Raj S <pranav@chatwoot.com> Co-authored-by: Fayaz Ahmed <15716057+fayazara@users.noreply.github.com> Co-authored-by: Sojan <sojan@pepalo.com>
7 lines
132 B
Ruby
7 lines
132 B
Ruby
module EmailHelper
|
|
def extract_domain_without_tld(email)
|
|
domain = email.split('@').last
|
|
domain.split('.').first
|
|
end
|
|
end
|