mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
refactor(nestjs): wip
This commit is contained in:
@@ -44,6 +44,20 @@ export class PaymentReceivesController {
|
||||
);
|
||||
}
|
||||
|
||||
@Get(':id/edit-page')
|
||||
@ApiResponse({
|
||||
status: 200,
|
||||
description:
|
||||
'The payment received edit page has been successfully retrieved.',
|
||||
})
|
||||
public getPaymentReceiveEditPage(
|
||||
@Param('id', ParseIntPipe) paymentReceiveId: number,
|
||||
) {
|
||||
return this.paymentReceivesApplication.getPaymentReceivedEditPage(
|
||||
paymentReceiveId,
|
||||
);
|
||||
}
|
||||
|
||||
@Get(':id/mail')
|
||||
@ApiResponse({
|
||||
status: 200,
|
||||
|
||||
Reference in New Issue
Block a user