summaryrefslogtreecommitdiff
path: root/app/policies/design_management/design_policy.rb
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