jira.js
    Preparing search index...

    Function getAllUserAvatars

    • Returns all avatars which are visible for the currently logged in user.

      Parameters

      • client: Client
      • Optionalparameters: { username?: string }
        • Optionalusername?: string

          Username

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              custom?: {
                  fileName?: string;
                  id?: string;
                  isDeletable?: boolean;
                  isSelected?: boolean;
                  isSystemAvatar?: boolean;
                  owner?: string;
                  selected?: boolean;
                  urls?: Record<string, string>;
                  [key: string]: unknown;
              }[];
              system?: {
                  fileName?: string;
                  id?: string;
                  isDeletable?: boolean;
                  isSelected?: boolean;
                  isSystemAvatar?: boolean;
                  owner?: string;
                  selected?: boolean;
                  urls?: Record<string, string>;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >