gitlab-org--gitlab-foss/app/policies/namespaces/project_namespace_policy.rb

10 lines
343 B
Ruby

# frozen_string_literal: true
module Namespaces
class ProjectNamespacePolicy < Namespaces::GroupProjectNamespaceSharedPolicy
# TODO: once https://gitlab.com/gitlab-org/gitlab/-/issues/364277 is solved, this
# should not be necessary anymore, and should be replaced with `delegate(:project)`.
delegate(:reload_project)
end
end