weddingsite/pages_old/api/user.js

18 lines
434 B
JavaScript

import withSession from '../../lib/session';
export default withSession(async (req, res) => {
const { user } = req.session;
if (user) {
// in a real world application you might read the user id from the session and then do a database request
// to get more information on the user if needed
res.json({
isLoggedIn: true,
...user,
});
} else {
res.json({
isLoggedIn: false,
});
}
});