2021-03-11 07:30:15 +01:00
|
|
|
# frozen_string_literal: true
|
2020-09-16 15:35:07 +02:00
|
|
|
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
|
2021-03-11 07:30:15 +01:00
|
|
|
end
|