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

contact_policy.rb « customer_relations « policies « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8367649b50c543e5c197aa06f0fe0dd85c74be3f (plain)
1
2
3
4
5
6
# frozen_string_literal: true
module CustomerRelations
  class ContactPolicy < BasePolicy
    delegate { @subject.group }
  end
end