0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-19 23:31:11 +02:00

Fix wizard locales for non-staff

Dieser Commit ist enthalten in:
Angus McLeod 2019-08-27 14:49:29 +10:00
Ursprung a52b54c463
Commit 9006126e04
2 geänderte Dateien mit 17 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -190,6 +190,22 @@ after_initialize do
CustomWizard::Wizard.set_wizard_redirect(user, wizard_id)
end
end
## TODO: We shouldn't be overriding the entire method here. Make this more lightweight.
add_to_class(:extra_locales_controller, :show) do
bundle = params[:bundle]
unless URI(request.referer).path.include? '/w/'
raise Discourse::InvalidAccess.new if bundle !~ /^(admin|wizard)$/ || !current_user&.staff?
end
if params[:v]&.size == 32
hash = ExtraLocalesController.bundle_js_hash(bundle)
immutable_for(24.hours) if hash == params[:v]
end
render plain: ExtraLocalesController.bundle_js(bundle), content_type: "application/javascript"
end
DiscourseEvent.trigger(:custom_wizard_ready)
end

Datei anzeigen

@ -17,7 +17,7 @@
<%= preload_script "wizard-plugin" %>
<%= preload_script "pretty-text-bundle" %>
<%= preload_script "locales/#{I18n.locale}" %>
<script src="<%= Discourse.base_uri %>/extra-locales/wizard"></script>
<script src="<%= ExtraLocalesController.url("wizard") %>"></script>
<%= csrf_meta_tags %>
<%- unless customization_disabled? %>