1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 15:35:22 +02:00
Maybe/app/jobs/sync_cleaner_job.rb

8 lines
100 B
Ruby
Raw Permalink Normal View History

class SyncCleanerJob < ApplicationJob
queue_as :scheduled
def perform
Sync.clean
end
end