summaryrefslogtreecommitdiff
path: root/app/policies/alert_management/alert_policy.rb
blob: e2383921c82d109e54fb39058462aed5e3d1085b (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

module AlertManagement
  class AlertPolicy < ::BasePolicy
    delegate { @subject.project }
  end
end

AlertManagement::AlertPolicy.prepend_mod