feat(emails): pass req in to filter:registration.interstitial

v1.18.x
Julian Lam 4 years ago
parent 7d115c8ef2
commit afd2d8dab1

@ -28,6 +28,7 @@ async function registerAndLoginUser(req, res, userData) {
}
const data = await plugins.hooks.fire('filter:register.interstitial', {
req,
userData,
interstitials: [],
});
@ -141,6 +142,7 @@ async function addToApprovalQueue(req, userData) {
authenticationController.registerComplete = function (req, res, next) {
// For the interstitials that respond, execute the callback with the form body
plugins.hooks.fire('filter:register.interstitial', {
req,
userData: req.session.registration,
interstitials: [],
}, async (err, data) => {

@ -193,6 +193,7 @@ Controllers.registerInterstitial = async function (req, res, next) {
}
try {
const data = await plugins.hooks.fire('filter:register.interstitial', {
req,
userData: req.session.registration,
interstitials: [],
});

@ -270,7 +270,7 @@ module.exports = function (middleware) {
});
if (!allowed.includes(path)) {
// Append user data if present
req.session.registration.uid = req.uid;
req.session.registration.uid = req.session.registration.uid || req.uid;
controllers.helpers.redirect(res, '/register/complete');
} else {

Loading…
Cancel
Save