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

@@ -45,6 +45,10 @@ export class BusinessListingsController {
deleteById(@Param('id') id:string){
this.listingsService.deleteBusinessListing(id)
}
@Delete('deleteAll')
deleteAll(){
this.listingsService.deleteAllBusinessListings()
}
}