mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 23:43:43 +08:00
12 lines
183 B
Ruby
12 lines
183 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Jobs
|
||
|
class CleanUpAssociatedGroups < ::Jobs::Scheduled
|
||
|
every 1.day
|
||
|
|
||
|
def execute(args)
|
||
|
AssociatedGroup.cleanup!
|
||
|
end
|
||
|
end
|
||
|
end
|