Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-10 04:12:53 +01:00
20 Zeilen
Kein EOL
572 B
Ruby
20 Zeilen
Kein EOL
572 B
Ruby
module CustomWizardExtraLocalesController
|
|
def show
|
|
if request.referer && URI(request.referer).path.include?('/w/')
|
|
bundle = params[:bundle]
|
|
|
|
if params[:v]&.size == 32
|
|
hash = ExtraLocalesController.bundle_js_hash(bundle)
|
|
immutable_for(1.year) if hash == params[:v]
|
|
end
|
|
|
|
render plain: ExtraLocalesController.bundle_js(bundle), content_type: "application/javascript"
|
|
else
|
|
super
|
|
end
|
|
end
|
|
end
|
|
|
|
class ExtraLocalesController
|
|
prepend CustomWizardExtraLocalesController if SiteSetting.custom_wizard_enabled
|
|
end |