debian-mirror-gitlab/lib/banzai/pipeline/email_pipeline.rb

22 lines
451 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2015-12-23 02:04:40 +05:30
module Banzai
module Pipeline
class EmailPipeline < FullPipeline
2018-03-17 18:26:18 +05:30
def self.filters
super.tap do |filter_array|
filter_array.delete(Banzai::Filter::ImageLazyLoadFilter)
end
end
2015-12-23 02:04:40 +05:30
def self.transform_context(context)
super(context).merge(
2019-02-02 18:00:53 +05:30
only_path: false,
2019-03-02 22:35:43 +05:30
emailable_links: true,
no_sourcepos: true
2015-12-23 02:04:40 +05:30
)
end
end
end
end