Skip to content

Commit e73e506

Browse files
authored
Merge pull request #2572 from bigcommerce/STRIPE-987
feat(payment): STRIPE-987 Add Stripe OCS ACH stored bank accounts type
2 parents a85b4b6 + 22e0b16 commit e73e506

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
- Removed banner widget configuration and related translations [#2561](https://github.com/bigcommerce/cornerstone/pull/2561)
1010
- Add support for shipping discounts in "order.total_rows" for use on the Order Details and Order Invoice pages [#2568](https://github.com/bigcommerce/cornerstone/pull/2568)
1111
- Updates eslint to v8 [#2570](https://github.com/bigcommerce/cornerstone/pull/2570)
12+
- Add stored by token ACH bank accounts type 'tokenized_ach', to the Payment methods page [#2572](https://github.com/bigcommerce/cornerstone/pull/2572)
1213

1314
## 6.16.2 (06-18-2025)
1415
- Restore indentation and quote rules to match BC Sass Style Guide [#2554](https://github.com/bigcommerce/cornerstone/pull/2554)

templates/components/account/payment-methods-list.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ <h4 class="paymentMethodsTitle">
3636
{{#if ../methodId '===' 'ach'}}
3737
<img class="methodHeader-icon" src="{{cdn 'img/payment-methods/ach.svg'}}" alt="{{lang 'account.payment_methods.ach'}}" title="{{lang 'account.payment_methods.ach'}}">
3838
<span class="methodHeader-brand">{{lang 'account.payment_methods.bank_account'}} {{lang 'account.payment_methods.card_ending_in' last_four=masked_account_number}}</span>
39+
{{else if ../methodId '===' 'tokenized_ach'}}
40+
<img class="methodHeader-icon" src="{{cdn 'img/payment-methods/ach.svg'}}" alt="{{lang 'account.payment_methods.ach'}}" title="{{lang 'account.payment_methods.ach'}}">
41+
<span class="methodHeader-brand">{{lang 'account.payment_methods.bank_account'}} {{lang 'account.payment_methods.card_ending_in' last_four=masked_account_number}}</span>
3942
{{else if ../methodId '===' 'ecp'}}
4043
<img class="methodHeader-icon" src="{{cdn 'img/payment-methods/ach.svg'}}" alt="{{lang 'account.payment_methods.ach'}}" title="{{lang 'account.payment_methods.ach'}}">
4144
<span class="methodHeader-brand">{{lang 'account.payment_methods.bank_account'}} {{lang 'account.payment_methods.card_ending_in' last_four=masked_account_number}}</span>

0 commit comments

Comments
 (0)