mirror of
https://github.com/internetee/registry.git
synced 2025-06-10 14:44:47 +02:00
8 lines
221 B
Ruby
8 lines
221 B
Ruby
# frozen_string_literal: true
|
|
|
|
namespace :disputes do
|
|
desc 'Check closed disputes with expired_at in the Past'
|
|
task check_closed: :environment do
|
|
DisputeStatusUpdateJob.perform_now(include_closed: true)
|
|
end
|
|
end
|