2021-09-23 05:09:51 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Namespaces
|
2021-12-07 10:15:03 -05:00
|
|
|
class ProjectNamespacePolicy < NamespacePolicy
|
2021-09-23 05:09:51 -04:00
|
|
|
# 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
|