mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
13 lines
261 B
Ruby
13 lines
261 B
Ruby
module Jobs
|
|
|
|
# Asynchronously send an email to a user
|
|
class UpdateUserInfo < Jobs::Base
|
|
|
|
def execute(args)
|
|
user = User.where(id: args[:user_id]).first
|
|
user.update_last_seen!
|
|
user.update_ip_address!(args[:ip_address])
|
|
end
|
|
end
|
|
end
|