weddingsite/pages/api/user.js

19 lines
442 B
JavaScript
Raw Normal View History

2021-06-04 00:58:40 +00:00
import withSession from '../../lib/session';
export default withSession(async (req, res) => {
const user = req.session.get('user');
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,
});
}
});