Merge branch 'main' into task/CAS-0/UpdateJavaVersion

This commit is contained in:
Hop In, I Have Puppies AND WiFi 2025-03-05 10:03:50 +00:00
commit a1850a9705
2 changed files with 6 additions and 5 deletions

View file

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

View file

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