mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
12 lines
219 B
Ruby
12 lines
219 B
Ruby
module Jobs
|
|
|
|
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
|