Use shallow routing for website details.

This commit is contained in:
Mike Cao 2022-11-02 08:57:52 -07:00
parent cb3895e565
commit 05245ca316
3 changed files with 5 additions and 4 deletions

View file

@ -1,9 +1,10 @@
import { createWebsite, getUser, getAllWebsites, getUserWebsites } from 'queries';
import { ok, methodNotAllowed, unauthorized, getRandomChars } from 'next-basics';
import { useAuth } from 'lib/middleware';
import { useAuth, useCors } from 'lib/middleware';
import { uuid } from 'lib/crypto';
export default async (req, res) => {
await useCors(req, res);
await useAuth(req, res);
const { user_id, include_all } = req.query;