0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/lib/custom_wizard/extensions/invites_controller.rb

20 Zeilen
435 B
Ruby

2021-03-11 07:30:15 +01:00
# frozen_string_literal: true
2019-12-05 09:05:21 +01:00
module InvitesControllerCustomWizard
def path(url)
2020-04-19 08:06:18 +02:00
if ::Wizard.user_requires_completion?(@user)
wizard_id = @user.redirect_to_wizard
2019-12-05 09:05:21 +01:00
if wizard_id && url != '/'
CustomWizard::Wizard.set_wizard_redirect(@user, wizard_id, url)
2019-12-05 09:05:21 +01:00
url = "/w/#{wizard_id.dasherize}"
end
end
super
2019-12-05 09:05:21 +01:00
end
private def post_process_invite(user)
super
2019-12-05 09:05:21 +01:00
@user = user
end
2021-03-11 07:30:15 +01:00
end