This commit is contained in:
Tria
2026-06-05 12:54:35 +03:00
parent 7c124d9845
commit c0dc9f5fc5
9 changed files with 2163 additions and 93 deletions

View File

@@ -1,8 +1,9 @@
import { Controller, Get, NotFoundException, Param, ParseUUIDPipe, Post, Res } from "@nestjs/common";
import { Body, Controller, Get, NotFoundException, Param, ParseUUIDPipe, Post, Res } from "@nestjs/common";
import { PaymentService } from "./payment.service";
import { Public } from "@edr/api-common";
import { randomUUID } from "crypto";
import { Response } from "express"
import { UpdatePaymentStatusDto } from "./dto/update-payment-status.dto";
@Public()
@Controller("payments")
export class PaymentController {
@@ -49,9 +50,5 @@ export class PaymentController {
}
@Post("web-hooks/telebirr")
paymentWebhook() {
}
}