refactor(nestjs): hook up the client with new endpoints

This commit is contained in:
Ahmed Bouhuolia
2025-05-14 21:45:13 +02:00
parent aef208b9d8
commit ecb80b2cf2
25 changed files with 267 additions and 166 deletions

View File

@@ -96,7 +96,7 @@ export class TransactionsLockingController {
@Get('/')
@ApiOperation({ summary: 'Get all transactions locking meta' })
async getTransactionLockingMetaList() {
return await this.queryTransactionsLocking.getTransactionsLockingAll();
return await this.queryTransactionsLocking.getTransactionsLockingList();
}
@Get(':module')