mirror of
https://github.com/lukevella/rallly.git
synced 2025-06-06 20:51:48 +02:00
♻️ Remove backend package (#1305)
This commit is contained in:
parent
12af4d9c84
commit
d40d4b27e2
33 changed files with 29 additions and 102 deletions
17
apps/web/src/trpc/routers/dashboard.ts
Normal file
17
apps/web/src/trpc/routers/dashboard.ts
Normal file
|
@ -0,0 +1,17 @@
|
|||
import { prisma } from "@rallly/database";
|
||||
|
||||
import { possiblyPublicProcedure, router } from "../trpc";
|
||||
|
||||
export const dashboard = router({
|
||||
info: possiblyPublicProcedure.query(async ({ ctx }) => {
|
||||
const activePollCount = await prisma.poll.count({
|
||||
where: {
|
||||
userId: ctx.user.id,
|
||||
status: "live",
|
||||
deleted: false, // TODO (Luke Vella) [2024-06-16]: We should add deleted/cancelled to the status enum
|
||||
},
|
||||
});
|
||||
|
||||
return { activePollCount };
|
||||
}),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue