ace833b31d
Example: for issues that are closed, the links will now show '[closed]' following the issue number. This is done as post-process after the markdown has been loaded from the cache as the status of the issue may change between the cache being populated and the content being displayed. In order to avoid N+1 queries problem when rendering notes ObjectRenderer populates the cache of referenced issuables for all notes at once, before the post processing phase. As a part of this change, the Banzai BaseParser#grouped_objects_for_nodes method has been refactored to return a Hash utilising the node itself as the key, since this was a common pattern of usage for this method.
19 lines
384 B
Ruby
19 lines
384 B
Ruby
module Banzai
|
|
module Pipeline
|
|
class PostProcessPipeline < BasePipeline
|
|
def self.filters
|
|
FilterArray[
|
|
Filter::RelativeLinkFilter,
|
|
Filter::IssuableStateFilter,
|
|
Filter::RedactorFilter
|
|
]
|
|
end
|
|
|
|
def self.transform_context(context)
|
|
context.merge(
|
|
post_process: true
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|