mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-15 07:36:41 +10:00
Merge pull request #5072 from jbornschein/proj-new-public
Add "public-project?" checkbox to new-project view
This commit is contained in:
@@ -36,6 +36,12 @@
|
||||
}
|
||||
}
|
||||
|
||||
.project-public-holder {
|
||||
.help-inline {
|
||||
padding-top: 7px;
|
||||
}
|
||||
}
|
||||
|
||||
.save-project-loader {
|
||||
img {
|
||||
margin-top: 50px;
|
||||
|
||||
@@ -18,7 +18,7 @@ module Projects
|
||||
snippets_enabled: default_features.snippets,
|
||||
merge_requests_enabled: default_features.merge_requests,
|
||||
public: default_features.public
|
||||
}
|
||||
}.stringify_keys
|
||||
|
||||
@project = Project.new(default_opts.merge(params))
|
||||
|
||||
|
||||
@@ -2,13 +2,7 @@
|
||||
.project-edit-errors
|
||||
= render 'projects/errors'
|
||||
.project-edit-content
|
||||
- if Gitlab.config.gitlab.default_projects_features.public
|
||||
%p.slead
|
||||
New projects are public by default. Any signed in user can see your project but cannot commit to it unless granted access.
|
||||
- else
|
||||
%p.slead
|
||||
New projects are private by default. You choose who can see the project and commit to repository.
|
||||
%hr
|
||||
|
||||
= form_for @project, remote: true do |f|
|
||||
.control-group.project-name-holder
|
||||
= f.label :name do
|
||||
@@ -53,6 +47,12 @@
|
||||
%span.light (optional)
|
||||
.controls
|
||||
= f.text_area :description, placeholder: "awesome project", class: "input-xlarge", rows: 3, maxlength: 250, tabindex: 3
|
||||
.control-group.project-public-holder
|
||||
= f.label :public do
|
||||
%span Public project
|
||||
.controls
|
||||
= f.check_box :public, { checked: Gitlab.config.gitlab.default_projects_features.public }, true, false
|
||||
%span.help-inline Make project visible to everyone
|
||||
|
||||
.form-actions
|
||||
= f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4
|
||||
|
||||
Reference in New Issue
Block a user