Switch payment API URL from localhost to production domain in payment client service

This commit is contained in:
marshal
2026-06-17 09:31:18 +03:00
parent 0b7492c502
commit 2be9b948ba

View File

@@ -18,7 +18,7 @@ import {
export class PaymentClientService {
private readonly logger = new Logger(PaymentClientService.name);
private readonly baseUrl = (
process.env.PAYMENT_API_URL ?? "http://localhost:3003"
process.env.PAYMENT_API_URL ?? "https://paymentcallback.triaplc.com"
).replace(/\/$/, "");
private readonly serviceToken = process.env.SERVICE_AUTH_TOKEN ?? "";