create satellite for imported repo
This commit is contained in:
parent
42ffbea8e0
commit
9764ba6df2
|
@ -38,6 +38,8 @@ module Projects
|
||||||
if @project.valid? && @project.import_url.present?
|
if @project.valid? && @project.import_url.present?
|
||||||
shell = Gitlab::Shell.new
|
shell = Gitlab::Shell.new
|
||||||
if shell.import_repository(@project.path_with_namespace, @project.import_url)
|
if shell.import_repository(@project.path_with_namespace, @project.import_url)
|
||||||
|
# We should create satellite for imported repo
|
||||||
|
@project.satellite.create unless @project.satellite.exists?
|
||||||
true
|
true
|
||||||
else
|
else
|
||||||
@project.errors.add(:import_url, 'cannot clone repo')
|
@project.errors.add(:import_url, 'cannot clone repo')
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
.input
|
.input
|
||||||
= f.text_field :import_url, class: 'xlarge', placeholder: 'https://github.com/randx/six.git'
|
= f.text_field :import_url, class: 'xlarge', placeholder: 'https://github.com/randx/six.git'
|
||||||
.light
|
.light
|
||||||
URL should be clonable
|
URL must be clonable
|
||||||
|
|
||||||
%p.padded
|
%p.padded
|
||||||
New projects are private by default. You choose who can see the project and commit to repository.
|
New projects are private by default. You choose who can see the project and commit to repository.
|
||||||
|
|
Loading…
Reference in a new issue