Update activity pub jobs

• Update:
- activity pub jobs to retry 0 and dead: true

• Remove:
- ActivityPub DeliveryWorker on account suspension
- Inbox, outbox, collections routes
This commit is contained in:
mgabdev
2020-05-29 13:01:35 -04:00
parent 1f9e33a80b
commit f7a0b022d4
7 changed files with 17 additions and 17 deletions

View File

@@ -73,12 +73,12 @@ Rails.application.routes.draw do
resource :follow, only: [:create], controller: :account_follow
resource :unfollow, only: [:create], controller: :account_unfollow
resource :outbox, only: [:show], module: :activitypub
resource :inbox, only: [:create], module: :activitypub
resources :collections, only: [:show], module: :activitypub
# resource :outbox, only: [:show], module: :activitypub
# resource :inbox, only: [:create], module: :activitypub
# resources :collections, only: [:show], module: :activitypub
end
resource :inbox, only: [:create], module: :activitypub
# resource :inbox, only: [:create], module: :activitypub
get '/interact/:id', to: 'remote_interaction#new', as: :remote_interaction
post '/interact/:id', to: 'remote_interaction#create'