Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

미지원 결제수단 제거 #2828

Merged
merged 1 commit into from
Oct 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions apps/website/src/lib/server/external-api/exim.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ const getUSDExchangeRateForDate = async (date: string) => {
data: 'AP01',
searchdate: date,
},
https: { rejectUnauthorized: false },
agent: { https: httpsAgent },
}).json<{ cur_unit: string; ttb: string }[]>();

Expand Down
10 changes: 5 additions & 5 deletions apps/website/src/routes/(default)/point/purchase/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@
const pointAmounts = [1000, 3000, 5000, 10_000, 30_000, 50_000, 100_000];
const paymentMethods: [Exclude<PaymentMethod, 'IN_APP_PURCHASE'>, string][] = [
['CREDIT_CARD', '신용카드'],
['BANK_ACCOUNT', '계좌이체'],
// ['BANK_ACCOUNT', '계좌이체'],
['VIRTUAL_BANK_ACCOUNT', '가상계좌'],
['PHONE_BILL', '휴대폰결제'],
['GIFTCARD_CULTURELAND', '문화상품권'],
['GIFTCARD_SMARTCULTURE', '스마트문화상품권'],
['GIFTCARD_BOOKNLIFE', '도서문화상품권'],
// ['PHONE_BILL', '휴대폰결제'],
// ['GIFTCARD_CULTURELAND', '문화상품권'],
// ['GIFTCARD_SMARTCULTURE', '스마트문화상품권'],
// ['GIFTCARD_BOOKNLIFE', '도서문화상품권'],
['PAYPAL', '페이팔'],
];
</script>
Expand Down
Loading