Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriejan de Vroom <ariejan@ariejan.net>2011-12-13 02:03:38 +0400
committerAriejan de Vroom <ariejan@ariejan.net>2011-12-13 02:03:38 +0400
commit1c9b9b7a3b0ae2ee60e4cda5d1ac2541c17302f8 (patch)
treee3c9ed43c39d381d994937157eae0bff0384e68a /config/routes.rb
parent2677bc3acb64a2e3a75a743bd9b5426c39decdef (diff)
Added Resque as a dependency
Diffstat (limited to 'config/routes.rb')
-rw-r--r--config/routes.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index ad8b0b31eaa..df210a20836 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,5 +1,9 @@
Gitlab::Application.routes.draw do
+ # Optionally, enable Resque here
+ # require 'resque/server'
+ # mount Resque::Server.new, at: '/info/resque'
+
get 'tags'=> 'tags#index'
get 'tags/:tag' => 'projects#index'