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

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

class NamespacePolicy < BasePolicy
  # NamespacePolicy has been traditionally for user namespaces.
  # So these policies have been moved into Namespaces::UserNamespacePolicy.
  # Once the user namespace conversion is complete, we can look at
  # either removing this file or locating common namespace policy items
  # here.
  # See https://gitlab.com/groups/gitlab-org/-/epics/6689 for details
end