homeservice/webui/src/hooks.server.js

15 lines
386 B
JavaScript
Raw Normal View History

2023-01-30 13:29:26 +01:00
export const handle = async ({ event, resolve }) => {
let userid = event.cookies.get('userid');
if (!userid) {
// if this is the first time the user has visited this app,
// set a cookie so that we recognise them when they return
userid = crypto.randomUUID();
event.cookies.set('userid', userid, { path: '/' });
}
event.locals.userid = userid;
return resolve(event);
};