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

work_item_types_helper.rb « migrations_helpers « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 40f84486537a196110cea758fd1ef5c78e73fcde (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module MigrationHelpers
  module WorkItemTypesHelper
    def reset_work_item_types
      Gitlab::DatabaseImporters::WorkItems::BaseTypeImporter.upsert_types
      Gitlab::DatabaseImporters::WorkItems::HierarchyRestrictionsImporter.upsert_restrictions
    end
  end
end