I have a sitemap defined like this in Boot.scala
def sitemap() = SiteMap(
Menu(S ? "Home") / "index",
Menu(S ? "Login") / "login",
Menu(S ? "Do Logged in Stuff") / "loggedinstuff" >> If( () => loggedInUser.is != Empty, "You must be logged in") )
Also I have a loggedInUser defined in Boot.scala like this
object loggedInUser extends SessionVar[Box[String]](Empty)
When I have a user log in, I want them to change my loggedInUser to be the username that they successfully logged in as.
- Is this an okay way to deal with logging in users?
- Where should I keep my loggedInUser object. Boot.scala? Somewhere else?
- How do I update loggedInUser so that he will now work to show the "loggedinstuff" page?