FEATURE: allow sending bulk invites to staged users

This commit is contained in:
Arpit Jalan
2019-10-30 11:38:47 +05:30
parent c32bd8ae48
commit 2ae71b7a87
3 changed files with 9 additions and 8 deletions

View File

@@ -165,7 +165,7 @@ class Invite < ActiveRecord::Base
end
def self.find_user_by_email(email)
User.with_email(email).where(staged: false).first
User.with_email(Email.downcase(email)).where(staged: false).first
end
def self.get_group_ids(group_names)