22 lines
648 B
TypeScript
22 lines
648 B
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
|
||
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
import { errorResponse } from '@/lib/errors';
|
||
|
|
import { cancelDocument } from '@/lib/services/documents.service';
|
||
|
|
|
||
|
|
export const POST = withAuth(
|
||
|
|
withPermission('documents', 'edit', async (_req, ctx, params) => {
|
||
|
|
try {
|
||
|
|
const doc = await cancelDocument(params.id!, ctx.portId, {
|
||
|
|
userId: ctx.userId,
|
||
|
|
portId: ctx.portId,
|
||
|
|
ipAddress: ctx.ipAddress,
|
||
|
|
userAgent: ctx.userAgent,
|
||
|
|
});
|
||
|
|
return NextResponse.json({ data: doc });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|