update verify cash payment

This commit is contained in:
2025-12-22 12:56:55 +03:30
parent 98716e0985
commit 2030132ea5
@@ -120,7 +120,7 @@ export class PaymentsController {
@ApiOperation({ summary: 'Verify cash payment ' })
@ApiParam({ name: 'paymentId', type: 'string', description: 'Payment ID' })
verifyCashPayment(@Param('paymentId') paymentId: string) {
return this.paymentMethodService.remove(paymentId);
return this.paymentsService.verifyCashPayment(paymentId);
}
@UseGuards(AdminAuthGuard)