gitlab-org--gitlab-foss/app/controllers/groups/application_controller.rb

21 lines
428 B
Ruby

class Groups::ApplicationController < ApplicationController
layout 'group'
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
end