jira.js
    Preparing search index...

    Function getAllPermissions

    • Returns all permissions that are present in the Jira instance - Global, Project and the global ones added by plugins

      Parameters

      Returns Promise<
          {
              permissions?: Record<
                  string,
                  {
                      description?: string;
                      id?: string;
                      key?: string;
                      name?: string;
                      type?: string & {}
                      | "PROJECT"
                      | "GLOBAL";
                      [key: string]: unknown;
                  },
              >;
              [key: string]: unknown;
          },
      >