debian-mirror-gitlab/app/policies/namespaces/project_namespace_policy.rb
2022-08-27 11:52:29 +05:30

9 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