mirror of
https://github.com/discourse/discourse.git
synced 2025-01-22 12:56:31 +08:00
13 lines
155 B
Ruby
13 lines
155 B
Ruby
module Jobs
|
|
|
|
class CalculateAvgTime < Jobs::Base
|
|
|
|
def execute(args)
|
|
Post.calculate_avg_time
|
|
Topic.calculate_avg_time
|
|
end
|
|
|
|
end
|
|
|
|
end
|