23 lines
663 B
TypeScript
23 lines
663 B
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
|
||
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
import { errorResponse } from '@/lib/errors';
|
||
|
|
import { revokeCrmInvite } from '@/lib/services/crm-invite.service';
|
||
|
|
|
||
|
|
export const DELETE = withAuth(
|
||
|
|
withPermission('admin', 'manage_users', async (_req, ctx, params) => {
|
||
|
|
try {
|
||
|
|
const id = params.id ?? '';
|
||
|
|
await revokeCrmInvite(id, {
|
||
|
|
userId: ctx.userId,
|
||
|
|
portId: ctx.portId,
|
||
|
|
ipAddress: ctx.ipAddress,
|
||
|
|
userAgent: ctx.userAgent,
|
||
|
|
});
|
||
|
|
return NextResponse.json({ success: true });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|