* Revert "Revert "chore: rename DWD to DelegationCredential (#19703)" (#19734)"
This reverts commit 340b5ab061.
* chore: fix schema and types for now
* fix: domainWideDelegationCredentialId error type
34 lines
951 B
TypeScript
34 lines
951 B
TypeScript
import { prisma } from "@calcom/prisma";
|
|
import { credentialForCalendarServiceSelect } from "@calcom/prisma/selects/credential";
|
|
import type { TrpcSessionUser } from "@calcom/trpc/server/trpc";
|
|
|
|
import { enrichUserWithDelegationCredentialsWithoutOrgId } from "../delegationCredential/server";
|
|
|
|
type SessionUser = NonNullable<TrpcSessionUser>;
|
|
type User = { id: SessionUser["id"]; email: SessionUser["email"] };
|
|
|
|
/**
|
|
* It includes in-memory DelegationCredential credentials as well.
|
|
*/
|
|
export async function getUsersCredentials(user: User) {
|
|
const credentials = await prisma.credential.findMany({
|
|
where: {
|
|
userId: user.id,
|
|
},
|
|
select: credentialForCalendarServiceSelect,
|
|
orderBy: {
|
|
id: "asc",
|
|
},
|
|
});
|
|
|
|
const { credentials: allCredentials } = await enrichUserWithDelegationCredentialsWithoutOrgId({
|
|
user: {
|
|
email: user.email,
|
|
id: user.id,
|
|
credentials,
|
|
},
|
|
});
|
|
|
|
return allCredentials;
|
|
}
|