interface IFrontUsersItem {
    authorizedplugins: string[];
    avatar?: undefined;
    email: string;
    firstname?: string;
    id: string;
    isvalidated: never;
    lastmodificationdate: never;
    lastname?: string;
    organizations: never[];
    password: never;
    passwordlastchanged: never;
    plugins: never[];
    projects: Pick<IProject<("id" | "title")[]>, "id" | "title">[];
    superuser: boolean;
    usermodels: Pick<
        IUserModelWithData<
            ("id" | "owners" | "users" | "groups" | "model" | "template")[],
        >,
        "id" | "owners" | "users" | "groups" | "model" | "template",
    >[];
    workspaces: Pick<IWorkspace<("id" | "name")[]>, "id" | "name">[];
}

Hierarchy (View Summary)

  • IUserWithData<
        (
            | "id"
            | "firstname"
            | "lastname"
            | "email"
            | "authorizedplugins"
            | "superuser"
            | "workspaces"
            | "projects"
            | "usermodels"
        )[],
    >
    • IFrontUsersItem

Properties

authorizedplugins: string[]
avatar?: undefined
email: string
firstname?: string
id: string
isvalidated: never
lastmodificationdate: never
lastname?: string
organizations: never[]
password: never
passwordlastchanged: never
plugins: never[]
projects: Pick<IProject<("id" | "title")[]>, "id" | "title">[]
superuser: boolean
usermodels: Pick<
    IUserModelWithData<
        ("id" | "owners" | "users" | "groups" | "model" | "template")[],
    >,
    "id" | "owners" | "users" | "groups" | "model" | "template",
>[]
workspaces: Pick<IWorkspace<("id" | "name")[]>, "id" | "name">[]