Fix scoping so that we don't break the naming convention

This commit is contained in:
Mark Tareshawty 2018-11-20 07:51:23 -05:00
Родитель 930741d1f5
Коммит 5e45ecb997
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 28DD1C473BF9D1AE
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -17,9 +17,11 @@ Rails.application.routes.draw do
get "/ext" => "doc#ext"
end
scope :docs do
scope :docs, as: :docs do
get "/" => "doc#ref"
end
scope :docs do
get "/howto/:file", to: redirect { |path_params, _req|
"https://github.com/git/git/blob/master/Documentation/howto/#{path_params[:file]}.txt"
}