Merge pull request 'fix: add correct redirect url after deposit' (!45) from bugfix/deposit into main

Reviewed-on: https://git.simonis.lol/projects/casino/pulls/45
Reviewed-by: lziemke <lea.z4@schule.bremen.de>
Reviewed-by: Klan Jattenhoff <jan@kjan.email>
This commit is contained in:
Constantin Simonis 2025-03-05 08:19:53 +00:00
commit 6ff6c1eb5e
2 changed files with 6 additions and 5 deletions

View file

@ -24,11 +24,11 @@ public class DepositController {
@Value("${stripe.secret.key}")
private String stripeKey;
@Value("${app.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+"/home")
.setMode(SessionCreateParams.Mode.PAYMENT)
.build();

View file

@ -4,6 +4,7 @@ spring.datasource.password=postgres_pass
server.port=8080
spring.jpa.hibernate.ddl-auto=create-drop
stripe.secret.key=${STRIPE_SECRET_KEY:sk_test_51QrePYIvCfqz7ANgqam8rEwWcMeKiLOof3j6SCMgu2sl4sESP45DJxca16mWcYo1sQaiBv32CMR6Z4AAAGQPCJo300ubuZKO8I}
app.frontend-host=http://localhost:3000
spring.application.name=lf12_starter
#client registration configuration