From 2c9bcc0c2bc8b8bf064801cdf3bee3c00c9ac566 Mon Sep 17 00:00:00 2001 From: mgabdev <> Date: Sat, 17 Aug 2019 01:20:36 -0400 Subject: [PATCH] Added tags route to routes.rb and point to home#index --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/config/routes.rb b/config/routes.rb index 20a135b5..d3275443 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -446,6 +446,7 @@ Rails.application.routes.draw do get '/about/dmca', to: 'about#dmca' get '/about/sales', to: 'about#sales' + get '/tags/:tag', to: 'home#index' get '/:username', to: 'home#index', as: :short_account get '/:username/with_replies', to: 'home#index', as: :short_account_with_replies get '/:username/media', to: 'home#index', as: :short_account_media