debian-mirror-gitlab/app/controllers/groups/application_controller.rb

29 lines
513 B
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Groups::ApplicationController < ApplicationController
private
def authorize_read_group!
unless @group and can?(current_user, :read_group, @group)
if current_user.nil?
return authenticate_user!
else
return render_404
end
end
end
def authorize_admin_group!
unless can?(current_user, :admin_group, group)
return render_404
end
end
def determine_layout
if current_user
'group'
else
'public_group'
end
end
end