37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
|
|
import { NextResponse } from 'next/server';
|
||
|
|
import { z } from 'zod';
|
||
|
|
|
||
|
|
import { withAuth, withPermission } from '@/lib/api/helpers';
|
||
|
|
import { parseBody } from '@/lib/api/route-helpers';
|
||
|
|
import { errorResponse } from '@/lib/errors';
|
||
|
|
import { createCrmInvite, listCrmInvites } from '@/lib/services/crm-invite.service';
|
||
|
|
|
||
|
|
export const GET = withAuth(
|
||
|
|
withPermission('admin', 'manage_users', async (_req, _ctx) => {
|
||
|
|
try {
|
||
|
|
const data = await listCrmInvites();
|
||
|
|
return NextResponse.json({ data });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|
||
|
|
|
||
|
|
const createInviteSchema = z.object({
|
||
|
|
email: z.string().email(),
|
||
|
|
name: z.string().min(1).max(200).optional(),
|
||
|
|
isSuperAdmin: z.boolean().optional().default(false),
|
||
|
|
});
|
||
|
|
|
||
|
|
export const POST = withAuth(
|
||
|
|
withPermission('admin', 'manage_users', async (req, _ctx) => {
|
||
|
|
try {
|
||
|
|
const body = await parseBody(req, createInviteSchema);
|
||
|
|
const result = await createCrmInvite(body);
|
||
|
|
return NextResponse.json({ data: result }, { status: 201 });
|
||
|
|
} catch (error) {
|
||
|
|
return errorResponse(error);
|
||
|
|
}
|
||
|
|
}),
|
||
|
|
);
|