1
0
Fork 0
discourse-custom-wizard-unl.../extensions/extra_locales_controller.rb
2020-12-08 13:27:19 +11:00

10 Zeilen
Kein EOL
334 B
Ruby

module ExtraLocalesControllerCustomWizard
private def valid_bundle?(bundle)
super || begin
return false unless bundle =~ /wizard/ && request.referer =~ /\/w\//
path = URI(request.referer).path
wizard_id = path.split('/w/').last
CustomWizard::Template.exists?(wizard_id.underscore)
end
end
end