Remove user/team transfer from website update.

This commit is contained in:
Brian Cao 2022-11-21 22:32:59 -08:00
parent d60ad1c782
commit 3efd2a5b10

View File

@ -15,8 +15,6 @@ export interface WebsiteRequestBody {
name: string;
domain: string;
shareId: string;
userId?: string;
teamId?: string;
}
export default async (
@ -39,14 +37,10 @@ export default async (
}
if (req.method === 'POST') {
const { ...data } = req.body;
if (data.userId && data.userId === null && data.teamId && data.teamId === null) {
badRequest(res, 'A website must be assigned to a User or Team.');
}
const { name, domain, shareId } = req.body;
try {
await updateWebsite(websiteId, data);
await updateWebsite(websiteId, { name, domain, shareId });
} catch (e: any) {
if (e.message.includes('Unique constraint') && e.message.includes('share_id')) {
return serverError(res, 'That share ID is already taken.');