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

project_namespace_policy.rb « namespaces « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 500c325138e432cc490b207035b17fd78924c3ce (plain)
1
2
3
4
5
6
7
8
9
# 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