gitlab-org--gitlab-foss/lib/banzai/filter.rb

10 lines
148 B
Ruby

# frozen_string_literal: true
module Banzai
module Filter
def self.[](name)
const_get("#{name.to_s.camelize}Filter")
end
end
end