refactor(server): rm response token

This commit is contained in:
cooder
2024-03-03 10:24:12 +08:00
parent fcf36fa2aa
commit 2363bae36d
+8
View File
@@ -33,6 +33,14 @@ export class TrpcRouter {
const items = await this.prismaService.account.findMany({
take: limit + 1,
where: {},
select: {
id: true,
name: true,
status: true,
createdAt: true,
updatedAt: true,
token: false,
},
cursor: cursor
? {
id: cursor,