diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-04-30 17:08:45 +0000 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-04-30 17:08:45 +0000 |
commit | f2cf6d75ecc6082897543f976e8e4bee7ac24e90 (patch) | |
tree | 7b82e44078cc6b5a8db350c0b66893fe2488deca /lib | |
parent | 6d22e9674456b921e0f951af10ba18505891ec10 (diff) | |
parent | 9c76a6fa96bd3c48dc1a64aecb082d4bd87dc2ba (diff) | |
download | gitlab-ce-f2cf6d75ecc6082897543f976e8e4bee7ac24e90.tar.gz |
Merge branch 'show-invalid-projects-google-code-import' into 'master'
Show incompatible projects in Google Code import status
Using Google Code import with a JSON file that contained only one Subversion project led to confusion
over whether the system was working. Display the list of valid projects if there are any, and show a list of incompatible projects. Provide tips on how to retain issue data after conversion.
Closes #1531
## Screenshots
Before:
![Screen_Shot_2015-04-29_at_12.46.41_AM](https://gitlab.com/stanhu/gitlab-ce/uploads/16ea5a99cbace48cd2f2c238b5f73f4e/Screen_Shot_2015-04-29_at_12.46.41_AM.png)
After with no projects available (notice the button is hidden):
![Screen_Shot_2015-04-30_at_1.34.38_AM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/43c612cdcbab181713e5764e2f38a04e/Screen_Shot_2015-04-30_at_1.34.38_AM.png)
After with 1 valid and 1 incompatible project:
![Screen_Shot_2015-04-30_at_1.37.26_AM](https://gitlab.com/gitlab-org/gitlab-ce/uploads/b5bcbd304206a996932e5208ef54a071/Screen_Shot_2015-04-30_at_1.37.26_AM.png)
See merge request !586
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/google_code_import/client.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/google_code_import/client.rb b/lib/gitlab/google_code_import/client.rb index 02f31e45f88..890bd9a3554 100644 --- a/lib/gitlab/google_code_import/client.rb +++ b/lib/gitlab/google_code_import/client.rb @@ -21,6 +21,10 @@ module Gitlab @repos ||= raw_data["projects"].map { |raw_repo| GoogleCodeImport::Repository.new(raw_repo) }.select(&:git?) end + def incompatible_repos + @incompatible_repos ||= raw_data["projects"].map { |raw_repo| GoogleCodeImport::Repository.new(raw_repo) }.reject(&:git?) + end + def repo(id) repos.find { |repo| repo.id == id } end |