<@!498057949541826571> awesome, Rishabh! 💪 lookin...
# support-questions-legacy
a
@User awesome, Rishabh! 💪 looking very good. looking at the
user
Lambda function.
Copy code
app.get("/user", Session.verifySession(), async (req, res) => {
    let session = req.session;
    res.send({
        sessionHandle: session.getHandle(),
        userId: session.getUserId(),
        jwtPayload: session.getJWTPayload()
    });
});
where the business logic is intended to go - before or after the
res.send
?