summaryrefslogtreecommitdiff
path: root/app/models/alert_management/alert_user_mention.rb
blob: d36aa80ee0515cf5e1bea1513fa0ece79620303a (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

module AlertManagement
  class AlertUserMention < UserMention
    belongs_to :alert_management_alert, class_name: '::AlertManagement::Alert'
    belongs_to :note
  end
end