ncc-prototype-email-alerts-sub
Version:
Northumberland Council Front End Email Alerts Subscription Prototype
22 lines (18 loc) • 526 B
text/typescript
import { NextFunction, Request, Response } from "express";
const navigator = (req: Request, res: Response, next: NextFunction) => {
switch (req.originalUrl) {
case '/postcode':
res.redirect('/address-select')
break;
case '/address-select':
res.redirect('/demo')
break;
case '/emailsubscription':
res.redirect('/success')
break;
default:
res.redirect('/')
}
next();
}
export default navigator;