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

adf_commonmark_pipeline.rb « jira_import « pipeline « banzai « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8af0279673cdc7849f2f287efe0d7bfd7bc63191 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

module Banzai
  module Pipeline
    module JiraImport
      class AdfCommonmarkPipeline < BasePipeline
        def self.filters
          FilterArray[
            Filter::JiraImport::AdfToCommonmarkFilter
          ]
        end
      end
    end
  end
end