Skip to content
Snippets Groups Projects
Unverified Commit ccc2f608 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Redirect from old authorize_follow path (#8584)

To avoid error due to nginx proxy caching the webfinger response
parent b65a9b72
No related branches found
No related tags found
No related merge requests found
...@@ -39,6 +39,7 @@ Rails.application.routes.draw do ...@@ -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 '/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 :accounts, path: 'users', only: [:show], param: :username do
resources :stream_entries, path: 'updates', only: [:show] do resources :stream_entries, path: 'updates', only: [:show] do
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment