File History: src/main/java/com/paymentlink/config/StripeConfig.java

← View file content

File Content at Commit 188fc92

1 package com.paymentlink.config;
2
3 import com.stripe.Stripe;
4 import jakarta.annotation.PostConstruct;
5 import org.springframework.beans.factory.annotation.Value;
6 import org.springframework.context.annotation.Configuration;
7
8 @Configuration
9 public class StripeConfig {
10
11 @Value("${stripe.secret.key}")
12 private String secretKey;
13
14 @PostConstruct
15 public void init() {
16 Stripe.apiKey = secretKey;
17 }
18 }
19
20

Commits

Commit Author Date Message File SHA Actions
f0438c2 <f69e50@finnacloud.com> 1766443042 +0300 12/22/2025, 10:37:22 PM increment once more a34b7c4 View
188fc92 <f69e50@finnacloud.com> 1766442998 +0300 12/22/2025, 10:36:38 PM increment a34b7c4 Hide
4617f76 <f69e50@finnacloud.com> 1766442953 +0300 12/22/2025, 10:35:53 PM rename branch from main to master oops a34b7c4 View
e6d1548 <f69e50@finnacloud.com> 1766442769 +0300 12/22/2025, 10:32:49 PM add initial test workflow file a34b7c4 View
9c24ca4 <f69e50@finnacloud.com> 1766442705 +0300 12/22/2025, 10:31:45 PM add CI configuration and test script for Jenkins build a34b7c4 View
690c1f6 <f69e50@finnacloud.com> 1766368110 +0300 12/22/2025, 1:48:30 AM initialize backend structure with controllers, DTOs, and configuration files a34b7c4 View