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

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

module Namespaces
  class GroupProjectNamespaceSharedPolicy < ::NamespacePolicy
    # Nothing here at the moment, but as we move policies from ProjectPolicy to ProjectNamespacePolicy,
    # anything common with GroupPolicy but not with UserNamespacePolicy can go in here.
    # See https://gitlab.com/groups/gitlab-org/-/epics/6689
  end
end