debug license

This commit is contained in:
2026-04-06 21:12:07 +03:30
parent af71fb441b
commit b8c5cb4c80
14 changed files with 299 additions and 366 deletions
@@ -1,4 +1,4 @@
import { Body, Controller, Delete, Get, Param, Patch, Post } from '@nestjs/common'
import { Body, Controller, Get, Param, Patch, Post } from '@nestjs/common'
import { CreatePartnerLicenseDto, UpdateLicenseDto } from './dto/license.dto'
import { PartnerLicensesService } from './licenses.service'
@@ -32,9 +32,4 @@ export class PartnerLicensesController {
) {
return this.licensesService.update(partnerId, id, data)
}
@Delete(':id')
async delete(@Param('partnerId') partnerId: string, @Param('id') id: string) {
return this.licensesService.delete(partnerId, id)
}
}