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

epic.rb « models « user_mentions « background_migration « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfd9a4faa9b220ee31ce3c888a0424f4646db4d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# frozen_string_literal: true
# rubocop:disable Style/Documentation

module Gitlab
  module BackgroundMigration
    module UserMentions
      module Models
        class Epic < ActiveRecord::Base
          include EachBatch
          include Concerns::IsolatedMentionable
          include Concerns::MentionableMigrationMethods
          include CacheMarkdownField

          attr_mentionable :title, pipeline: :single_line
          attr_mentionable :description
          cache_markdown_field :title, pipeline: :single_line
          cache_markdown_field :description, issuable_state_filter_enabled: true

          self.table_name = 'epics'
          self.inheritance_column = :_type_disabled

          belongs_to :author, class_name: "::Gitlab::BackgroundMigration::UserMentions::Models::User"
          belongs_to :group, class_name: "::Gitlab::BackgroundMigration::UserMentions::Models::Group"

          def self.user_mention_model
            Gitlab::BackgroundMigration::UserMentions::Models::EpicUserMention
          end

          def user_mention_model
            self.class.user_mention_model
          end

          def project
            nil
          end

          def mentionable_params
            { group: group, label_url_method: :group_epics_url }
          end

          def user_mention_resource_id
            id
          end

          def user_mention_note_id
            'NULL'
          end
        end
      end
    end
  end
end