2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Namespaces
|
2022-01-26 12:08:38 +05:30
|
|
|
class ProjectNamespacePolicy < Namespaces::GroupProjectNamespaceSharedPolicy
|
2021-11-18 22:05:49 +05:30
|
|
|
# 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
|