fallback to email lookup if needed

This commit is contained in:
Sam 2014-05-18 11:49:36 +10:00
parent 4f7e960e49
commit 55e5515657

View File

@ -40,6 +40,13 @@ def create_user(opts, import_id)
u.save!
u
rescue
# try based on email
u = User.find_by(email: opts[:email].downcase)
u.custom_fields["import_id"] = import_id
u.save!
u
end