mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
12 lines
213 B
JavaScript
12 lines
213 B
JavaScript
import { prisma, runQuery } from 'lib/relational';
|
|
|
|
export async function getWebsiteById(website_id) {
|
|
return runQuery(
|
|
prisma.website.findUnique({
|
|
where: {
|
|
website_id,
|
|
},
|
|
}),
|
|
);
|
|
}
|