1
0
Fork 0
discourse-custom-wizard-unl.../lib/custom_wizard/extensions/tags_controller.rb
2022-03-12 14:00:07 +01:00

10 Zeilen
214 B
Ruby

# frozen_string_literal: true
require 'request_store'
module CustomWizardTagsController
def search
::RequestStore.store[:tag_groups] = params[:tag_groups] if params[:tag_groups].present?
super
end
end