data & perftest

This commit is contained in:
2024-04-08 16:56:30 +02:00
parent fb69d2e4b3
commit 8aea819496
12 changed files with 7841 additions and 15 deletions

View File

@@ -21,6 +21,9 @@ export class UnknownListingsController {
return await this.listingsService.getCommercialPropertyListingById(id);
}
}
@Get('repo/:repo')
async getAllByRepo(@Param('repo') repo:string): Promise<any> {
return await this.listingsService.getIdsForRepo(repo);
}
}