mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
40 lines
800 B
TypeScript
40 lines
800 B
TypeScript
import { TeamWebsite } from '@prisma/client';
|
|
import { uuid } from 'lib/crypto';
|
|
import prisma from 'lib/prisma';
|
|
|
|
export async function getTeamWebsite(teamId: string, userId: string): Promise<TeamWebsite> {
|
|
return prisma.client.teamWebsite.findFirst({
|
|
where: {
|
|
teamId,
|
|
userId,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function getTeamWebsites(teamId: string): Promise<TeamWebsite[]> {
|
|
return prisma.client.teamWebsite.findMany({
|
|
where: {
|
|
teamId,
|
|
},
|
|
include: {
|
|
user: true,
|
|
website: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function createTeamWebsite(
|
|
userId: string,
|
|
teamId: string,
|
|
websiteId: string,
|
|
): Promise<TeamWebsite> {
|
|
return prisma.client.teamWebsite.create({
|
|
data: {
|
|
id: uuid(),
|
|
userId,
|
|
teamId,
|
|
websiteId,
|
|
},
|
|
});
|
|
}
|