mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 13:09:18 +08:00
fallback to email lookup if needed
This commit is contained in:
parent
4f7e960e49
commit
55e5515657
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user