Add CSV export for lists and domain blocks (#9677)

Fix #6893
Fix #9268
This commit is contained in:
Eugen Rochko
2019-01-01 13:44:04 +01:00
committed by GitHub
parent 1d4215be77
commit 7fc7437d05
5 changed files with 82 additions and 4 deletions

View File

@ -94,6 +94,8 @@ Rails.application.routes.draw do
resources :follows, only: :index, controller: :following_accounts
resources :blocks, only: :index, controller: :blocked_accounts
resources :mutes, only: :index, controller: :muted_accounts
resources :lists, only: :index, controller: :lists
resources :domain_blocks, only: :index, controller: :blocked_domains
end
resource :two_factor_authentication, only: [:show, :create, :destroy]