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

alert_user_mention.rb « alert_management « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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