* if a request has no session cookie, a new user, session and wallet is created and session cookie is set * if a request has a session cookie and session exists in db, we will fetch user and wallet from db * this means that we have a user and wallet during each render without any login required
5 lines
158 B
JavaScript
5 lines
158 B
JavaScript
const user = $$("user")
|
|
const wallet = $$("wallet"
|
|
)
|
|
console.log(`logged in as ${user.Name} with id ${user.Id}`)
|
|
console.log(`you have ${wallet.Msats} msats`) |