Merge branch 'main' into task/CAS-0/UpdateJavaVersion
This commit is contained in:
commit
a1850a9705
2 changed files with 6 additions and 5 deletions
|
@ -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();
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue