Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
heptapod
heptapod
Commits
d0cf9b40b3a6
Commit
6950b18d
authored
Jan 11, 2019
by
Fabian Schneider
Committed by
Dmitriy Zaporozhets
Jan 11, 2019
Browse files
Fix default visibility_level for new projects
parent
f169e99ea6a8
Changes
3
Show whitespace changes
Inline
Side-by-side
app/models/project.rb
View file @
d0cf9b40
...
@@ -73,7 +73,7 @@ class Project < ActiveRecord::Base
...
@@ -73,7 +73,7 @@ class Project < ActiveRecord::Base
delegate
:no_import?
,
to: :import_state
,
allow_nil:
true
delegate
:no_import?
,
to: :import_state
,
allow_nil:
true
default_value_for
:archived
,
false
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
:resolve_outdated_diff_discussions
,
false
default_value_for
:container_registry_enabled
,
gitlab_config_features
.
container_registry
default_value_for
:container_registry_enabled
,
gitlab_config_features
.
container_registry
default_value_for
(
:repository_storage
)
{
Gitlab
::
CurrentSettings
.
pick_repository_storage
}
default_value_for
(
:repository_storage
)
{
Gitlab
::
CurrentSettings
.
pick_repository_storage
}
...
...
changelogs/unreleased/45779-fix-default-visibility-level-for-projects.yml
0 → 100644
View file @
d0cf9b40
---
title
:
Fix default visibility_level for new projects
merge_request
:
24120
author
:
Fabian Schneider @fabsrc
type
:
fixed
spec/models/project_spec.rb
View file @
d0cf9b40
...
@@ -1413,6 +1413,24 @@
...
@@ -1413,6 +1413,24 @@
end
end
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
describe
'#visibility_level_allowed?'
do
let
(
:project
)
{
create
(
:project
,
:internal
)
}
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