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

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

module DesignManagement
  class DesignPolicy < ::BasePolicy
    # The IssuePolicy will delegate to the ProjectPolicy
    delegate { @subject.issue }
  end
end