forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
19 lines (18 loc) · 714 Bytes
/
index.js
File metadata and controls
19 lines (18 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
const { sendAuthEmail } = require('./notify-send-authenticate-email')
const { sendAuthTextMsg } = require('./notify-send-authenticate-text-msg')
const {
sendOrgInviteCreateAccount,
} = require('./notify-send-org-invite-create-account')
const { sendOrgInviteEmail } = require('./notify-send-org-invite-email')
const { sendPasswordResetEmail } = require('./notify-send-password-reset-email')
const { sendTfaTextMsg } = require('./notify-send-tfa-text-msg')
const { sendVerificationEmail } = require('./notify-send-verification-email')
module.exports = {
sendAuthEmail,
sendAuthTextMsg,
sendOrgInviteCreateAccount,
sendOrgInviteEmail,
sendPasswordResetEmail,
sendTfaTextMsg,
sendVerificationEmail,
}