Redirect from old authorize_follow path (#8584)

To avoid error due to nginx proxy caching the webfinger response
This commit is contained in:
Eugen Rochko 2018-09-03 00:10:28 +02:00 committed by GitHub
parent b65a9b7243
commit ccc2f608c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -39,6 +39,7 @@ Rails.application.routes.draw do
}
get '/users/:username', to: redirect('/@%{username}'), constraints: lambda { |req| req.format.nil? || req.format.html? }
get '/authorize_follow', to: redirect { |_, request| "/authorize_interaction?#{request.params.to_query}" }
resources :accounts, path: 'users', only: [:show], param: :username do
resources :stream_entries, path: 'updates', only: [:show] do