Has anyone using BOB setup a way to have each user "login" right away so their username is stored somewhere? For my purposes this is what I'm doing today:
- I just made the startup tiddler a simple drop-down ($select) with known users. It stores it in $:/temp/username
- I have a data tiddler with a pseudo password for each user (I'm their boss so I know their birthday and use it as their password) just to people don't accidentally pick each other's profile
- If the user enters the right password in the edit-text box (matches the data tiddler value), then they get (via reveal) a "login" box that takes them to the "real" landing tiddler.
- Throughout the rest of the wiki, I'm filtering content based around their $:/temp/username value
It's fine, though not secure in any way (not that big a deal) and easily bypassed (more problematic). I see some "shadow" tiddlers around username and password that I worry I should be using instead, but probably it's for another unrelated purpose.
I should note this is for a trello-like microsoft planner -like utility I'm building, this is one of the last things to figure out. (BTW - thanks again to Jed for putting together such an awesome tool with the .exe especially!)