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

module AlertManagement
  class AlertUserMention < UserMention
    belongs_to :alert, class_name: '::AlertManagement::Alert',
      foreign_key: :alert_management_alert_id,
      inverse_of: :user_mentions

    belongs_to :note
  end
end