1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-08 15:05:22 +02:00
Maybe/app/jobs/sync_cleaner_job.rb
Zach Gollwitzer 9f13b5bb83
Some checks are pending
Publish Docker image / ci (push) Waiting to run
Publish Docker image / Build docker image (push) Blocked by required conditions
Handle stale syncs (#2257)
* Handle stale syncs

* Use `visible` sync logic in sidebar groups
2025-05-17 18:28:21 -04:00

7 lines
100 B
Ruby

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