diff options
author | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-25 11:16:28 -0300 |
---|---|---|
committer | Douglas Barbosa Alexandre <dbalexandre@gmail.com> | 2016-08-31 18:27:42 -0300 |
commit | 9b376e772edda214e189752c13d831bae7f1088d (patch) | |
tree | 4417d857c03cf6c3e12f04501911286722904518 /lib | |
parent | e71cd7a300017cf85e16de3b1c68fdb25c3a4b4d (diff) | |
download | gitlab-ce-9b376e772edda214e189752c13d831bae7f1088d.tar.gz |
GitHub importer use default project visibility for non-private projects
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/github_import/project_creator.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/github_import/project_creator.rb b/lib/gitlab/github_import/project_creator.rb index f4221003db5..8237fe104d6 100644 --- a/lib/gitlab/github_import/project_creator.rb +++ b/lib/gitlab/github_import/project_creator.rb @@ -17,7 +17,7 @@ module Gitlab path: repo.name, description: repo.description, namespace_id: namespace.id, - visibility_level: repo.private ? Gitlab::VisibilityLevel::PRIVATE : Gitlab::VisibilityLevel::PUBLIC, + visibility_level: repo.private ? Gitlab::VisibilityLevel::PRIVATE : ApplicationSetting.current.default_project_visibility, import_type: "github", import_source: repo.full_name, import_url: repo.clone_url.sub("https://", "https://#{@session_data[:github_access_token]}@"), |