diff options
author | Mike Greiling <mgreiling@gitlab.com> | 2017-06-06 08:28:39 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-06-06 08:28:39 +0000 |
commit | e245d7eebe747378f4158b30634ab0da4df59117 (patch) | |
tree | c710812e72c181c066728817ef06c90e836acee3 /app/helpers/visibility_level_helper.rb | |
parent | 17feb2faa71416b3459003eeb2a877f2c65dd3ef (diff) | |
download | gitlab-ce-e245d7eebe747378f4158b30634ab0da4df59117.tar.gz |
Resolve "When changing project visibility setting, change other dropdowns automatically"
Diffstat (limited to 'app/helpers/visibility_level_helper.rb')
-rw-r--r-- | app/helpers/visibility_level_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/visibility_level_helper.rb b/app/helpers/visibility_level_helper.rb index b4aaf498068..50757b01538 100644 --- a/app/helpers/visibility_level_helper.rb +++ b/app/helpers/visibility_level_helper.rb @@ -31,9 +31,9 @@ module VisibilityLevelHelper when Gitlab::VisibilityLevel::PRIVATE "Project access must be granted explicitly to each user." when Gitlab::VisibilityLevel::INTERNAL - "The project can be cloned by any logged in user." + "The project can be accessed by any logged in user." when Gitlab::VisibilityLevel::PUBLIC - "The project can be cloned without any authentication." + "The project can be accessed without any authentication." end end |