Skip to content

Commit

Permalink
feature(website/admin): raisenow as payment category (#670)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssandino authored Dec 11, 2023
1 parent 79047ae commit c5dbc61
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions admin/src/collections/Contributions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ export function buildContributionsCollection(
{ id: ContributionSourceKey.BENEVITY, label: 'Benevity' },
{ id: ContributionSourceKey.CASH, label: 'Cash' },
{ id: ContributionSourceKey.STRIPE, label: 'Stripe' },
{ id: ContributionSourceKey.RAISENOW, label: 'RaiseNow' },
{ id: ContributionSourceKey.WIRE_TRANSFER, label: 'Wire Transfer' },
],
validation: { required: true },
Expand Down
3 changes: 2 additions & 1 deletion shared/locales/de/website-me.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"sources": {
"benevity": "Benevity",
"cash": "Bar",
"stripe": "Stripe",
"raisenow": "Twint",
"stripe": "Kreditkarte",
"wire-transfer": "Banküberweisung"
}
},
Expand Down
3 changes: 2 additions & 1 deletion shared/locales/en/website-me.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"sources": {
"benevity": "Benevity",
"cash": "Cash",
"stripe": "Stripe",
"raisenow": "Twint",
"stripe": "Credit Card",
"wire-transfer": "Wire Transfer"
}
},
Expand Down
1 change: 1 addition & 0 deletions shared/src/types/contribution.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const CONTRIBUTION_FIRESTORE_PATH = 'contributions';
export enum ContributionSourceKey {
BENEVITY = 'benevity',
CASH = 'cash',
RAISENOW = 'raisenow',
STRIPE = 'stripe',
WIRE_TRANSFER = 'wire-transfer',
}
Expand Down

0 comments on commit c5dbc61

Please sign in to comment.