mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
import DBClient from '@/prisma/DBClient';
|
|
|
|
const findBeerPostLikeById = async (beerPostId: string, userId: string) =>
|
|
DBClient.instance.beerPostLike.findFirst({
|
|
where: {
|
|
beerPostId,
|
|
userId,
|
|
},
|
|
});
|
|
|
|
export default findBeerPostLikeById;
|