Public git read-only access via http

This commit is contained in:
Dmitriy Zaporozhets 2013-01-10 20:17:57 +02:00
parent eb626edd3f
commit 4c6224aad1
10 changed files with 89 additions and 15 deletions

View file

@ -36,6 +36,14 @@ Gitlab::Application.routes.draw do
get 'help/ssh' => 'help#ssh'
get 'help/raketasks' => 'help#raketasks'
#
# Public namespace
#
namespace :public do
resources :projects, only: [:index]
root to: "projects#index"
end
#
# Admin Area
#