chore: remove unused

This commit is contained in:
Methapon2001 2024-07-25 11:44:01 +07:00
parent 557254eb19
commit c29ec941ca

View file

@ -793,7 +793,7 @@ export class QuotationController extends Controller {
@Delete("{quotationId}")
@Security("keycloak", MANAGE_ROLES)
async deleteQuotationById(@Request() req: RequestWithUser, @Path() quotationId: string) {
async deleteQuotationById(@Path() quotationId: string) {
const record = await prisma.quotation.findUnique({
where: { id: quotationId },
});