summaryrefslogtreecommitdiff
path: root/help/config/routes.rb
diff options
context:
space:
mode:
Diffstat (limited to 'help/config/routes.rb')
-rw-r--r--help/config/routes.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/help/config/routes.rb b/help/config/routes.rb
index 8f3241c..23e0c11 100644
--- a/help/config/routes.rb
+++ b/help/config/routes.rb
@@ -1,6 +1,8 @@
Rails.application.routes.draw do
- resources :tickets, :except => :edit
- resources :users do
+ scope "(:locale)", :locale => MATCH_LOCALE do
resources :tickets, :except => :edit
+ resources :users do
+ resources :tickets, :except => :edit
+ end
end
end