Versions Compared

Key

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

This article shows how to set the scope of the filters created in Jira to either Global\Private

...

  1. The setShareScope action in Jira Command Line Interface allows the filters to be available to either Global or Private.
  2. Before creating a filter in Jira, set the scope of the filter using the action setShareScope as given in the below example.

    Code Block
    themeMidnight
    --action setShareScope --value Global

    The above action will default the filter share scope for the current user to GLOBAL.

  3. Now, create a filter using createFilter action as given in the below example.

    Code Block
    themeMidnight
    --action createFilter --name filterforTSboard --jql "project = TESTER01 ORDER BY Rank ASC"

    The above action creates a filter named "filterforTSboard" for the Jira project "TESTER01".

  4. To verify the filter permissions from Jira UI, log in to Jira as an administrator. 
  5. From the top navigation bar, click on Issues, from the dropdown select manage filters as shown in the screenshot below.
  6. As the below screenshot indicates, the filter "filterforTSboard" has no restrictions and can be viewed by any logged-in user.
  7. Similarly, the filters can be restricted by setting the scope to "PRIVATE". Refer to the sample action given below for the same.

    Code Block
    themeMidnight
    --action setShareScope --value private


    Code Block
    themeMidnight
    --action createFilter --name filterforTSboard-1 --jql "project = TESTER01 ORDER BY Rank ASC"


  8. The filter "filterforTSboard-1" will be set as private in Jira as shown in the below screenshot.
    Image Added


Info