mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-16 17:26:21 +00:00
11 lines
209 B
Ruby
11 lines
209 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
namespace :distributed_press do
|
||
|
namespace :tokens do
|
||
|
desc 'Renew tokens'
|
||
|
task renew: :environment do
|
||
|
RenewDistributedPressTokensJob.perform_now
|
||
|
end
|
||
|
end
|
||
|
end
|