diff options
author | Chocobozzz <me@florianbigard.com> | 2019-02-20 15:54:32 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-02-20 15:54:32 +0100 |
commit | dee77e767f27b6749a334451a8f1aa25872a6a0b (patch) | |
tree | 2cf24ea839f9a48453022f9245492c5e447d6a09 /server/lib/job-queue | |
parent | ef80c66cea945d315336251dbb5efcb06c64189d (diff) | |
download | PeerTube-dee77e767f27b6749a334451a8f1aa25872a6a0b.tar.gz PeerTube-dee77e767f27b6749a334451a8f1aa25872a6a0b.tar.zst PeerTube-dee77e767f27b6749a334451a8f1aa25872a6a0b.zip |
Create send email type
Instead of using email job handler payload type
Diffstat (limited to 'server/lib/job-queue')
-rw-r--r-- | server/lib/job-queue/handlers/email.ts | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/server/lib/job-queue/handlers/email.ts b/server/lib/job-queue/handlers/email.ts index 2ba39a156..62701222c 100644 --- a/server/lib/job-queue/handlers/email.ts +++ b/server/lib/job-queue/handlers/email.ts | |||
@@ -1,15 +1,8 @@ | |||
1 | import * as Bull from 'bull' | 1 | import * as Bull from 'bull' |
2 | import { logger } from '../../../helpers/logger' | 2 | import { logger } from '../../../helpers/logger' |
3 | import { Emailer } from '../../emailer' | 3 | import { Emailer, SendEmailOptions } from '../../emailer' |
4 | 4 | ||
5 | export type EmailPayload = { | 5 | export type EmailPayload = SendEmailOptions |
6 | to: string[] | ||
7 | subject: string | ||
8 | text: string | ||
9 | |||
10 | fromDisplayName?: string | ||
11 | replyTo?: string | ||
12 | } | ||
13 | 6 | ||
14 | async function processEmail (job: Bull.Job) { | 7 | async function processEmail (job: Bull.Job) { |
15 | const payload = job.data as EmailPayload | 8 | const payload = job.data as EmailPayload |