mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-05 13:35:21 +02:00
8 lines
131 B
Ruby
8 lines
131 B
Ruby
|
class SecurityHealthCheckJob < ApplicationJob
|
||
|
queue_as :scheduled
|
||
|
|
||
|
def perform
|
||
|
Security::HealthChecker.check_all
|
||
|
end
|
||
|
end
|