0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-14 22:02:53 +01:00
discourse-custom-wizard/lib/custom_wizard/extensions/users_controller.rb
2024-10-16 13:52:03 +02:00

9 Zeilen
259 B
Ruby

# frozen_string_literal: true
module CustomWizardUsersController
def account_created
if current_user.present? && (wizard = CustomWizard::Wizard.after_signup(current_user))
return redirect_to "/w/#{wizard.id.dasherize}"
end
super
end
end