mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
11 lines
206 B
JavaScript
11 lines
206 B
JavaScript
import { prisma, runQuery } from 'lib/db';
|
|
|
|
export async function getWebsiteByShareId(share_id) {
|
|
return runQuery(
|
|
prisma.website.findUnique({
|
|
where: {
|
|
share_id,
|
|
},
|
|
}),
|
|
);
|
|
}
|