Manoj Kumar
Manoj Kumar

Reputation: 29

Hiding the JQL Query for the search filters

I have created a search filter for the tickets updated within a day. And the query looks like:

updated >= -1d ORDER BY created DESC

I want to hide the query behind the filter for logged in users other then the owner

Upvotes: 1

Views: 299

Answers (2)

amuratova
amuratova

Reputation: 451

When you save a filter in Jira, by default it is visible only to you. You don't need to additionally hide it.

Upvotes: 1

sintasy
sintasy

Reputation: 637

  1. Save this filter.
  2. Create another one filter with JQL:

    filter = id_of_filter_from_step_1

    filter = 14811 (for example)

Not sure is it helps after all, but you can at least sort of hide it. Unfortunately that doesn't change that users still need access from you first filter. So, they will be able to take id, place it to url https://your_jira_url/issues/?filter=### and get original JQL request.

As far as I know you can't hide JQL request by way it described in question.

Upvotes: 1

Related Questions