From cceac14bafbb245e092a934dc0afeebc2eff0a41 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Fri, 31 May 2013 11:55:51 -0400 Subject: [PATCH] I broke infinite scrolling in a topic --- config/routes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 3db7e346e8d..c26799d47fd 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -182,7 +182,7 @@ Discourse::Application.routes.draw do get 'search' => 'search#query' # Topics resource - get 't/:id' => 'topics#redirect_to_show' + get 't/:id' => 'topics#show' delete 't/:id' => 'topics#destroy' put 't/:id' => 'topics#update' post 't' => 'topics#create'