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
path: root/config
diff options
context:
space:
mode:
authorValery Sizov <vsv2711@gmail.com>2014-12-31 16:07:48 +0300
committerValery Sizov <valery@gitlab.com>2015-01-10 20:51:43 +0300
commita9f7fd2c1a7052247333b89f6a22a883b480370d (patch)
treea7321e528f9ac10f0e8f8f591dca6a4c83f09b9a /config
parentd02a22ba21f91d2aa4f9cf716dc3aefcf7e7495e (diff)
Github Importer
Diffstat (limited to 'config')
-rw-r--r--config/routes.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb
index d36540024aa..fc82926abb1 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -52,6 +52,14 @@ Gitlab::Application.routes.draw do
get "/s/:username" => "snippets#user_index", as: :user_snippets, constraints: { username: /.*/ }
#
+ # Github importer area
+ #
+ resource :github_import, only: [:create, :new] do
+ get :status
+ get :callback
+ end
+
+ #
# Explroe area
#
namespace :explore do