diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-07-20 08:55:44 +0200 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-07-20 08:55:44 +0200 |
commit | 839aec1a61b5b8003e27091a871c8988fbf8892c (patch) | |
tree | 861afe2f65314730e46ce90e2ea3c5e8a3d8c3b5 /lib/api/projects.rb | |
parent | 1cd573ee7f03bcb356478aab5900fae4618b53ec (diff) | |
download | gitlab-ce-839aec1a61b5b8003e27091a871c8988fbf8892c.tar.gz |
Replace parse_boolean with to_boolean
Diffstat (limited to 'lib/api/projects.rb')
-rw-r--r-- | lib/api/projects.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/api/projects.rb b/lib/api/projects.rb index 6d2a6f3946c..8fed7db8803 100644 --- a/lib/api/projects.rb +++ b/lib/api/projects.rb @@ -8,7 +8,7 @@ module API def map_public_to_visibility_level(attrs) publik = attrs.delete(:public) if publik.present? && !attrs[:visibility_level].present? - publik = parse_boolean(publik) + publik = to_boolean(publik) # Since setting the public attribute to private could mean either # private or internal, use the more conservative option, private. attrs[:visibility_level] = (publik == true) ? Gitlab::VisibilityLevel::PUBLIC : Gitlab::VisibilityLevel::PRIVATE |