This resource supports the migration of some Connect modules to their equivalent Forge modules.

Hierarchy

  • CommonHttpService
    • MigrationOfConnectModulesToForgeService

Constructors

Methods

  • Submits a request to trigger migration of connect issue field to its Forge custom field counterpart.

    When migrating a Connect app to Forge, Issue Field modules must be converted to Custom field modules. This endpoint triggers the background migration of field data. Use the GET endpoint to retrieve the status and progress of the task.

    For more details, see Jira modules > Jira Custom Fields.

    Permissions required: Only Connect and Forge apps can make this request.

    Parameters

    • params: {
          connectKey: string;
          jiraIssueFieldsKey: string;
          retriggerCompletedMigration?: boolean;
      }
      • connectKey: string

        The key of the Connect app that contains the Jira issue field being migrated.

        com.example.app
        
      • jiraIssueFieldsKey: string

        The module key of the Connect issue field being migrated.

        my-custom-field
        
      • OptionalretriggerCompletedMigration?: boolean

        Whether to retrigger the migration if it has already completed.

    Returns Promise<void>

  • Method to initialize the class. Normally used to set up validation rules.

    Returns void