fix: add correct redirect url after deposit

This commit is contained in:
Constantin Simonis 2025-03-05 08:57:14 +01:00
parent 925a9d540d
commit 204970856b
No known key found for this signature in database
GPG key ID: 758DD9C506603183

View file

@ -24,11 +24,11 @@ public class DepositController {
@Value("${stripe.secret.key}")
private String stripeKey;
@Value("${frontend.host}")
private String frontendHost;
@PostMapping("/deposit/checkout")
public ResponseEntity<SessionIdDto> checkout(
@RequestBody @Valid AmountDto amountDto,
@RequestHeader("Origin") String origin
) throws StripeException {
public ResponseEntity<SessionIdDto> checkout(@RequestBody @Valid AmountDto amountDto) throws StripeException {
Stripe.apiKey = stripeKey;
SessionCreateParams params = SessionCreateParams.builder()
@ -38,7 +38,7 @@ public class DepositController {
.setQuantity(1L)
.setName("Einzahlung")
.build())
.setSuccessUrl(origin+"/deposit/success")
.setSuccessUrl(frontendHost+"/deposit/success")
.setMode(SessionCreateParams.Mode.PAYMENT)
.build();