@ministryofjustice/hmpps-digital-prison-reporting-frontend
Version:
The Digital Prison Reporting Frontend contains templates and code to help display data effectively in UI applications.
10 lines (9 loc) • 326 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = (request, response, next) => {
if (response.locals.user && response.locals.user.token) {
return response.locals.user.token;
}
next('Could not find user token in response.locals.user.token');
return null;
};