12 lines
208 B
Ruby
12 lines
208 B
Ruby
|
module Banzai
|
||
|
module Pipeline
|
||
|
class EmailPipeline < FullPipeline
|
||
|
def self.transform_context(context)
|
||
|
super(context).merge(
|
||
|
only_path: false
|
||
|
)
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|