8 lines
140 B
Ruby
8 lines
140 B
Ruby
module Jobs
|
|
class CalculatePostCount < Struct.new(:tag_name)
|
|
def perform
|
|
Tag.recalculate_post_count(tag_name)
|
|
end
|
|
end
|
|
end
|