mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
12 lines
158 B
Ruby
12 lines
158 B
Ruby
|
module Jobs
|
||
|
|
||
|
class CalculateAvgTime < Jobs::Base
|
||
|
|
||
|
def execute(args)
|
||
|
Post.calculate_avg_time
|
||
|
Topic.calculate_avg_time
|
||
|
end
|
||
|
|
||
|
end
|
||
|
|
||
|
end
|