mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:56:20 +00:00
9 lines
189 B
Ruby
9 lines
189 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
namespace :activity_pub do
|
||
|
desc 'Update Fediblocks'
|
||
|
task fediblocks: :environment do |_, args|
|
||
|
ActivityPub::FediblockFetchJob.perform_later
|
||
|
end
|
||
|
end
|