wip: implement sendVerificationEmail

This commit is contained in:
Elliot DeNolf
2020-09-16 10:47:21 -04:00
parent a39cec2b76
commit c439297223
3 changed files with 55 additions and 3 deletions

View File

@@ -7,6 +7,7 @@ const me = require('../auth/operations/me');
const refresh = require('../auth/operations/refresh');
const registerFirstUser = require('../auth/operations/registerFirstUser');
const resetPassword = require('../auth/operations/resetPassword');
const sendVerificationEmail = require('../auth/sendVerificationEmail');
const create = require('../collections/operations/create');
const find = require('../collections/operations/find');
@@ -37,6 +38,7 @@ function bindOperations(ctx) {
refresh: refresh.bind(ctx),
registerFirstUser: registerFirstUser.bind(ctx),
resetPassword: resetPassword.bind(ctx),
sendVerificationEmail: sendVerificationEmail.bind(ctx),
},
},
globals: {