videosphere
    Preparing search index...

    Defines one user row returned by the admin users listing endpoint.

    interface AdminUserRow {
        userId: string;
        email: string;
        name?: string;
        role: "admin" | "user";
        createdAt: string;
        canResetPassword: boolean;
    }
    Index

    Properties

    userId: string

    Stable id (auth user id / user_profiles.userId); use for client keys, not email.

    email: string
    name?: string
    role: "admin" | "user"
    createdAt: string
    canResetPassword: boolean

    False for Google OAuth-only accounts that cannot receive password reset links.