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

policy_policy.rb « cleanup « packages « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c2aacef1744ab6f13508e9663f56efb0c09a38d (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module Packages
  module Cleanup
    class PolicyPolicy < BasePolicy
      delegate { @subject.project }
    end
  end
end