소스 검색

basic stripe card tokenization working

tags/v0.1.6
Jonathan Cobb 5 년 전
부모
커밋
ad0b073afd
3개의 변경된 파일11개의 추가작업 그리고 7개의 파일을 삭제
  1. +2
    -2
      bubble-server/src/main/java/bubble/service/boot/StandardSelfNodeService.java
  2. +8
    -4
      bubble-server/src/main/resources/message_templates/server/en_US/post_auth/ResourceMessages.properties
  3. +1
    -1
      bubble-web

+ 2
- 2
bubble-server/src/main/java/bubble/service/boot/StandardSelfNodeService.java 파일 보기

@@ -123,9 +123,9 @@ public class StandardSelfNodeService implements SelfNodeService {

// start RefundService if payments are enabled and this is a SageLauncher
if (c.paymentsEnabled() && c.isSageLauncher()) {
log.info("onStart: starting RefundService");
c.getBean(RefundService.class).start();
log.info("onStart: starting BillingService and RefundService");
c.getBean(BillingService.class).start();
c.getBean(RefundService.class).start();
}

return true;


+ 8
- 4
bubble-server/src/main/resources/message_templates/server/en_US/post_auth/ResourceMessages.properties 파일 보기

@@ -64,15 +64,19 @@ locale_codes=en_US
locale_en_US=English (US)

# Payment methods
payment_description_credit=Pay using a Credit Card
payment_description_code=Use an Invitation Code
payment_description_free=Enjoy Bubble for FREE!
payment_description_credit=Credit or Debit Card
payment_description_code=Invitation Code
payment_description_free=FREE!

# Payment fields
# Invite code payment fields
field_payment_invite_code=Invitation Code
button_label_submit_invite_code=Use Invite Code
message_verified_invite_code=Invite Code Successfully Verified

# Credit payment fields
field_payment_card_number=Credit or Debit Card
button_label_submit_card_authorization=Authorize Card Payment

# Error messages from API server
err.accountContactsJson.length=Account contacts length violation
err.accountPlan.callerCountryDisallowed=Your country is not currently supported by our platform


+ 1
- 1
bubble-web

@@ -1 +1 @@
Subproject commit f1432a512d90c5e3986393da247916f034a8513a
Subproject commit 2b02dfe20a2c6aec2b85ffe63be9177524b503f7

불러오는 중...
취소
저장