summaryrefslogtreecommitdiff
path: root/app/controllers/groups
diff options
context:
space:
mode:
authorZeger-Jan van de Weg <zegerjan@gitlab.com>2016-03-18 13:28:16 +0100
committerFelipe Artur <felipefac@gmail.com>2016-03-18 16:58:04 -0300
commitb959ae553b1243e081d557b1e545d30830931e5b (patch)
treece6c7410a97d93645fce4eb4ae77f1e8a1f9879b /app/controllers/groups
parent0a7f7161198feaa9a4cae7c16669a0e6187aed33 (diff)
downloadgitlab-ce-b959ae553b1243e081d557b1e545d30830931e5b.tar.gz
Improve group visibility level feature
Diffstat (limited to 'app/controllers/groups')
-rw-r--r--app/controllers/groups/application_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/groups/application_controller.rb b/app/controllers/groups/application_controller.rb
index be801858eaf..795ce50fe92 100644
--- a/app/controllers/groups/application_controller.rb
+++ b/app/controllers/groups/application_controller.rb
@@ -9,7 +9,7 @@ class Groups::ApplicationController < ApplicationController
end
def authorize_read_group!
- unless @group and can?(current_user, :read_group, @group)
+ unless @group && can?(current_user, :read_group, @group)
if current_user.nil?
return authenticate_user!
else