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
25 lines (24 loc) · 846 Bytes
/
index.js
File metadata and controls
25 lines (24 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
const { authenticate } = require('./authenticate')
const { resetPassword } = require('./reset-password')
const { sendEmailVerification } = require('./send-email-verification')
const { sendPasswordResetLink } = require('./send-password-reset')
const { sendPhoneCode } = require('./send-phone-code')
const { signIn } = require('./sign-in')
const { signUp } = require('./sign-up')
const { updateUserPassword } = require('./update-user-password')
const { updateUserProfile } = require('./update-user-profile')
const { verifyAccount } = require('./verify-account')
const { verifyPhoneNumber } = require('./verify-phone-number')
module.exports = {
authenticate,
resetPassword,
sendEmailVerification,
sendPasswordResetLink,
sendPhoneCode,
signIn,
signUp,
updateUserPassword,
updateUserProfile,
verifyAccount,
verifyPhoneNumber,
}