Commit 4be12be6 authored by Andrew8xx8's avatar Andrew8xx8

Routes fixed

parent e90aebe2
......@@ -38,6 +38,16 @@ Gitlab::Application.routes.draw do
get 'help/web_hooks' => 'help#web_hooks'
get 'help/workflow' => 'help#workflow'
#
# Global snippets
#
resources :snippets do
member do
get "raw"
end
end
match "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
#
# Public namespace
#
......@@ -100,14 +110,6 @@ Gitlab::Application.routes.draw do
get "errors/githost"
resources :snippets do
member do
get "raw"
get "my"
end
end
match "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
#
# Profile Area
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment