An event thrown by a UserAdminService.

interface UserAdminEvent {
    authentication: Authentication;
    error?: unknown;
    login: boolean;
    logout: boolean;
    source: UserAdminService;
}

Properties

authentication: Authentication

Authentication data.

error?: unknown

Error during login/logout process.

login: boolean

True, if this event belongs to a login of a user..

logout: boolean

True, if this event belongs to a logout of a user.

Event source.