mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
Remove confusing/incorrect comments
This commit is contained in:
parent
fb70df3ff3
commit
a6062e0b98
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
||||||
module Jobs
|
module Jobs
|
||||||
|
|
||||||
# Asynchronously send an email to a user
|
|
||||||
class UpdateUserInfo < Jobs::Base
|
class UpdateUserInfo < Jobs::Base
|
||||||
|
|
||||||
def execute(args)
|
def execute(args)
|
||||||
|
@ -9,4 +8,5 @@ module Jobs
|
||||||
user.update_ip_address!(args[:ip_address])
|
user.update_ip_address!(args[:ip_address])
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
module Jobs
|
module Jobs
|
||||||
|
|
||||||
# Asynchronously send an email to a user
|
|
||||||
class ViewTracker < Jobs::Base
|
class ViewTracker < Jobs::Base
|
||||||
def execute(args)
|
def execute(args)
|
||||||
topic_id = args[:topic_id]
|
topic_id = args[:topic_id]
|
||||||
|
@ -14,4 +13,5 @@ module Jobs
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue