summaryrefslogtreecommitdiff
path: root/app/policies/namespaces/project_namespace_policy.rb
blob: bc08a7a45ed6ebf00d649a485068c9138d681b30 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Namespaces
  class ProjectNamespacePolicy < BasePolicy
    # 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