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

user_mention.rb « reports « abuse « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8091089ede4f54d4a6f2780b2eb0934967249d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module Abuse
  module Reports
    class UserMention < UserMention
      self.table_name = 'abuse_report_user_mentions'

      belongs_to :abuse_report, optional: false
      belongs_to :note, optional: false
    end
  end
end