diff --git a/config/routes.rb b/config/routes.rb index d4898687..5966cc72 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -131,7 +131,6 @@ Rails.application.routes.draw do get :player end - resources :tags, only: [:show] resources :emojis, only: [:show] resources :invites, only: [:index, :create, :destroy] resources :filters, except: [:show] @@ -452,6 +451,7 @@ Rails.application.routes.draw do get '/:account_username/posts/:id', to: 'statuses#show', as: :short_account_status get '/:account_username/posts/:id/embed', to: 'statuses#embed', as: :embed_short_account_status + resources :tags, only: [:show] match '*unmatched_route', via: :all,