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

iteration.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ed73793c78f98baaea8ba3d5d53548d9b7bcf342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

# Placeholder class for model that is implemented in EE
class Iteration < ApplicationRecord
  include IgnorableColumns

  # TODO https://gitlab.com/gitlab-org/gitlab/-/issues/372125
  # TODO https://gitlab.com/gitlab-org/gitlab/-/issues/372126
  ignore_column :project_id, remove_with: '15.6', remove_after: '2022-09-17'

  self.table_name = 'sprints'

  def self.reference_prefix
    '*iteration:'
  end

  def self.reference_pattern
    nil
  end
end

Iteration.prepend_mod_with('Iteration')