2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

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