Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This article explains how to customize the Clone+ and Clone++ options for project(s) using the property file.

Instructions

  1. Log into the Jira as an administrator. 
  2. Navigate to > Add-ons > Manage apps > Clone Plus for Jira and select the relevant modules.

  3. Enable the following custom Clone options and disable the Disable the default Clone+ and Clone++ options as shown in the above screenshotand enable the following custom Clone options:

    1. Clone+ (custom1) and Clone++ (custom1)

    2. Clone+ (custom2) and Clone++ (custom2)

    3. Clone+ (custom3) and Clone++ (custom3)

      Info

      Clone+ and Clone++ are the modules enabled by default when you install the app, and you cannot modify these labels are not editable.


  4. Click Configure to open the Configure the Configure Clone Plus Properties Properties page.
  5. Click the Edit tab to add the following clone-plus properties:

    Code Block
    titleShow this action for all projects, issue types, and status for clone+ and clone++
    // Represents for Clone+ (custom1)
    1.condition.*.*.*= true	
    
    // Represents for Clone++ (custom1) 
    1.plus.condition.*.*.*= true			


    Code Block
    titleShow this action only for DEMO project with all issue types, and status for clone+ and clone++
    // Represents for Clone+ (custom2)
    2.condition.DEMO.*.* = true	
    
    // Represents for Clone++ (custom2)
    2.plus.condition.DEMO.*.* = true		


    Code Block
    titleDo not show this action for CLON project with all issue types, and status for clone+ and clone++
    // Represents for Clone+ (custom3)  
    3.condition.*.*.* = true			
    
    // Represents for Clone++ (custom3)
    3.plus.condition.CLON.*.* = false		


  6. Click Make Active.

You can now see the configured labels in the More option.

  • Output in DEMO project:
    Image RemovedImage Added
  • Output in CLON project:
    Image RemovedImage Added
  • Output for other (Ex: TEST) project:
    Image Removedother project, TEST, in this example:
    Image Added
Info

It is recommended to test this scenario in a non-production environment before implementing it in production.

...