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
|
2022-08-27 11:52:29 +05:30
|
|
|
# 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)
|
2021-11-18 22:05:49 +05:30
|
|
|
end
|
|
|
|
end
|