24 lines
598 B
TypeScript
24 lines
598 B
TypeScript
![]() |
import { CredentialsType, SmtpCredentialsData } from 'models'
|
||
|
import { PrismaClient } from 'db'
|
||
|
import { encrypt } from 'utils/api'
|
||
|
import { freeWorkspaceId } from 'utils/playwright/databaseSetup'
|
||
|
|
||
|
const prisma = new PrismaClient()
|
||
|
|
||
|
export const createSmtpCredentials = (
|
||
|
id: string,
|
||
|
smtpData: SmtpCredentialsData
|
||
|
) => {
|
||
|
const { encryptedData, iv } = encrypt(smtpData)
|
||
|
return prisma.credentials.create({
|
||
|
data: {
|
||
|
id,
|
||
|
data: encryptedData,
|
||
|
iv,
|
||
|
name: smtpData.from.email as string,
|
||
|
type: CredentialsType.SMTP,
|
||
|
workspaceId: freeWorkspaceId,
|
||
|
},
|
||
|
})
|
||
|
}
|