2
0

feat(editor): Add send email integration

This commit is contained in:
Baptiste Arnaud
2022-02-07 18:06:37 +01:00
parent f4336b83cc
commit d6238b3474
48 changed files with 2119 additions and 2606 deletions

View File

@ -56,17 +56,14 @@ model Credentials {
id String @id @default(cuid())
ownerId String
owner User @relation(fields: [ownerId], references: [id], onDelete: Cascade)
data Json
data String // Encrypted data
name String
type CredentialsType
type String
iv String
@@unique([name, type, ownerId])
}
enum CredentialsType {
GOOGLE_SHEETS
}
enum Plan {
FREE
PRO