Let's say we need to set the ShoppingCart class from a request using sessions. What code should we write in the appropriate place?
get("/cart") {
val cart = ShoppingCart()
val session = // setting session here
}Let's say we need to set the ShoppingCart class from a request using sessions. What code should we write in the appropriate place?
get("/cart") {
val cart = ShoppingCart()
val session = // setting session here
}Create a free account to access the full topic