The UserData is included in the attachment of the ConnectionData in the DirectorySessionInterfaceSignal.LoginSuccess signal.

It contains the name of the user and possibly a URL to the user picture.


Events

interface UserData {
    email: string;
    id: string;
    initials: string;
    name: string;
    picture: string;
    viewtags: string[];
}

Properties

email: string

The email of the user (if applicable).

id: string

The id of the user.

initials: string

The initials of the user, John doe may have JD or J.

name: string

The complete name of the user.

picture: string

The URL of the user thumbnail (may be empty).

viewtags: string[]

The full user view rights (security tags + open build rights).