Welcome to mirror list, hosted at ThFree Co, Russian Federation.

project_namespace_policy.rb « namespaces « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33aadc7c411a770cc835e95fdc3ed374496277a9 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Namespaces
  class ProjectNamespacePolicy < Namespaces::GroupProjectNamespaceSharedPolicy
    # For now users are not granted any permissions on project namespace
    # as it's completely hidden to them. When we start using project
    # namespaces in queries, we will have to extend this policy.
  end
end