Smallthoughts

Thoughts on Smalltalk

User administration

TFLogin provides no components for administration of users at this time.

You can obtain a list of all usernames by evaluating

    (TLAuthenticationManager name: 'your-app-name') allUsernames.

You can prepare reports on users using the following code fragment as a beginning

    | authmgr |
authmgr := (TLAuthenticationManager name: 'LoginTestApp').
authmgr allUserIds do: [ :each |
| user |
user := authmgr userForId: each.
Transcript cr; show: 'User ', user username, ' last login at ',
user lastLoginFormatted, ' from ',
user lastLoginFrom]