Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rails 7 Upgrade #1138

Closed
wants to merge 7 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Allow redirecting to external host when creating membership payment
  • Loading branch information
archonic committed Sep 30, 2023
commit dbabbc8c797e7042ba2131e464d42dc467a0636b
2 changes: 1 addition & 1 deletion app/controllers/signup/payments_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def create

result = checkout.checkout_url(amount: @form.amount, email: @member.email, return_to: callback_signup_payments_url, member_id: @member.id, date: Date.current)
if result.success?
redirect_to result.value
redirect_to result.value, allow_other_host: true
else
errors = result.error
Rails.logger.error(errors)
Expand Down