Fixed uuid reference.

This commit is contained in:
Mike Cao 2023-07-28 17:52:57 -07:00
parent 001f80427c
commit 21849ed0d1

View File

@ -1,9 +1,10 @@
import { useAuth, useCors } from 'lib/middleware';
import { NextApiRequestQueryBody } from 'lib/types';
import { NextApiResponse } from 'next';
import { methodNotAllowed, ok, unauthorized, uuid } from 'next-basics';
import { methodNotAllowed, ok, unauthorized } from 'next-basics';
import { createReport, getReports } from 'queries';
import { canViewWebsite } from 'lib/auth';
import { uuid } from 'lib/crypto';
export interface ReportRequestBody {
websiteId: string;