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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/policies/namespaces/group_project_namespace_shared_policy.rb')
-rw-r--r--app/policies/namespaces/group_project_namespace_shared_policy.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/policies/namespaces/group_project_namespace_shared_policy.rb b/app/policies/namespaces/group_project_namespace_shared_policy.rb
new file mode 100644
index 00000000000..1ed9f05306f
--- /dev/null
+++ b/app/policies/namespaces/group_project_namespace_shared_policy.rb
@@ -0,0 +1,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