umami/queries/admin/website/createWebsite.js

24 lines
425 B
JavaScript
Raw Normal View History

2022-08-28 06:38:35 +02:00
import prisma from 'lib/prisma';
import cache from 'lib/cache';
2022-07-12 23:14:36 +02:00
export async function createWebsite(userId, data) {
2022-08-28 06:38:35 +02:00
return prisma.client.website
.create({
2022-07-12 23:14:36 +02:00
data: {
2022-11-01 07:42:37 +01:00
user: {
2022-07-12 23:14:36 +02:00
connect: {
id: userId,
2022-07-12 23:14:36 +02:00
},
},
...data,
},
2022-08-28 06:38:35 +02:00
})
.then(async data => {
if (cache.enabled) {
await cache.storeWebsite(data);
2022-08-28 06:38:35 +02:00
}
2022-08-27 05:21:53 +02:00
return data;
2022-08-28 06:38:35 +02:00
});
2022-07-12 23:14:36 +02:00
}