debug license
This commit is contained in:
@@ -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)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user