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: 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