IUserExt
const mixin IUserExt : SysExt
User management system extension
Authenticate a web request and return a session
Lookup a user by username
abstract UserSession? authenticate(WebReq req, WebRes res, Dict? opts)
Authenticate a web request and return a session. If request is not authenticated then redirect to login page and return null.
abstract User? read(Obj username, Bool checked)
Lookup a user by username. If not found then raise exception or return null based on the checked flag.