浏览代码

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

正在加载...
取消
保存