Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
8ff41740
Commit
8ff41740
authored
Jan 11, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
f1aa62e3
7e1b5f42
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
1 deletion
+24
-1
app/models/project.rb
app/models/project.rb
+1
-1
changelogs/unreleased/45779-fix-default-visibility-level-for-projects.yml
...eased/45779-fix-default-visibility-level-for-projects.yml
+5
-0
spec/models/project_spec.rb
spec/models/project_spec.rb
+18
-0
No files found.
app/models/project.rb
View file @
8ff41740
...
...
@@ -73,7 +73,7 @@ class Project < ActiveRecord::Base
delegate
:no_import?
,
to: :import_state
,
allow_nil:
true
default_value_for
:archived
,
false
default_value_for
:visibility_level
,
gitlab_config_features
.
visibility_level
default_value_for
(
:visibility_level
)
{
Gitlab
::
CurrentSettings
.
default_project_visibility
}
default_value_for
:resolve_outdated_diff_discussions
,
false
default_value_for
:container_registry_enabled
,
gitlab_config_features
.
container_registry
default_value_for
(
:repository_storage
)
{
Gitlab
::
CurrentSettings
.
pick_repository_storage
}
...
...
changelogs/unreleased/45779-fix-default-visibility-level-for-projects.yml
0 → 100644
View file @
8ff41740
---
title
:
Fix default visibility_level for new projects
merge_request
:
24120
author
:
Fabian Schneider @fabsrc
type
:
fixed
spec/models/project_spec.rb
View file @
8ff41740
...
...
@@ -1541,6 +1541,24 @@ describe Project do
end
end
describe
'#visibility_level'
do
let
(
:project
)
{
build
(
:project
)
}
subject
{
project
.
visibility_level
}
context
'by default'
do
it
{
is_expected
.
to
eq
(
Gitlab
::
VisibilityLevel
::
PRIVATE
)
}
end
context
'when set to INTERNAL in application settings'
do
before
do
stub_application_setting
(
default_project_visibility:
Gitlab
::
VisibilityLevel
::
INTERNAL
)
end
it
{
is_expected
.
to
eq
(
Gitlab
::
VisibilityLevel
::
INTERNAL
)
}
end
end
describe
'#visibility_level_allowed?'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment