13 lines
226 B
Ruby
13 lines
226 B
Ruby
require 'banzai'
|
|
|
|
module Banzai
|
|
module Pipeline
|
|
class EmailPipeline < FullPipeline
|
|
def self.transform_context(context)
|
|
super(context).merge(
|
|
only_path: false
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|