summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-04-27 07:42:32 +0000
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-05-06 14:41:25 +0300
commitd4516cf5cd55b6f6f36451548eeaead0bde23a88 (patch)
tree9d117d2aaf0e7dc51a40ba85670854ce1ed770f5
parentd5c71c834ea992e464d8828e2a103faaf23973ea (diff)
downloadgitlab-ce-d4516cf5cd55b6f6f36451548eeaead0bde23a88.tar.gz
Merge branch 'fix-gitorious-importer' into 'master'
Get Gitorious importer to work again. Fixes #1504. See merge request !576
-rw-r--r--CHANGELOG1
-rw-r--r--app/controllers/import/gitorious_controller.rb2
-rw-r--r--lib/gitlab/gitorious_import/client.rb2
3 files changed, 3 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 1aab904f117..97e2827989c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,7 @@
Please view this file on the master branch, on stable branches it's out of date.
v 7.11.0 (unreleased)
+ - Get Gitorious importer to work again.
- Fix clone URL field and X11 Primary selection (Dmitry Medvinsky)
- Ignore invalid lines in .gitmodules
-
diff --git a/app/controllers/import/gitorious_controller.rb b/app/controllers/import/gitorious_controller.rb
index 6067a87ee04..c121d2de7cb 100644
--- a/app/controllers/import/gitorious_controller.rb
+++ b/app/controllers/import/gitorious_controller.rb
@@ -6,7 +6,7 @@ class Import::GitoriousController < Import::BaseController
def callback
session[:gitorious_repos] = params[:repos]
- redirect_to status_import_gitorious_url
+ redirect_to status_import_gitorious_path
end
def status
diff --git a/lib/gitlab/gitorious_import/client.rb b/lib/gitlab/gitorious_import/client.rb
index 8cdc3d4afae..1fa89dba448 100644
--- a/lib/gitlab/gitorious_import/client.rb
+++ b/lib/gitlab/gitorious_import/client.rb
@@ -14,7 +14,7 @@ module Gitlab
end
def repos
- @repos ||= repo_names.map { |full_name| Repository.new(full_name) }
+ @repos ||= repo_names.map { |full_name| GitoriousImport::Repository.new(full_name) }
end
def repo(id)