Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-31 12:13:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-31 12:13:12 +0300
commit6170bdc060501ecf6f817a530b3dc9f2e39ad4c3 (patch)
treec0e92981040c3aa0b2b78de816ee51cfb53ce661 /lib/gitlab/visibility_level.rb
parent136651d7cb69357d2823adefac430df389e81e17 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'lib/gitlab/visibility_level.rb')
-rw-r--r--lib/gitlab/visibility_level.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/gitlab/visibility_level.rb b/lib/gitlab/visibility_level.rb
index 049e3befe64..7360585df43 100644
--- a/lib/gitlab/visibility_level.rb
+++ b/lib/gitlab/visibility_level.rb
@@ -47,17 +47,17 @@ module Gitlab
def options
{
- s_('VisibilityLevel|Private') => PRIVATE,
+ s_('VisibilityLevel|Private') => PRIVATE,
s_('VisibilityLevel|Internal') => INTERNAL,
- s_('VisibilityLevel|Public') => PUBLIC
+ s_('VisibilityLevel|Public') => PUBLIC
}
end
def string_options
{
- 'private' => PRIVATE,
+ 'private' => PRIVATE,
'internal' => INTERNAL,
- 'public' => PUBLIC
+ 'public' => PUBLIC
}
end