I've subscribed to a filter which is neither my own filter nor in my favorites list.
How can I find this filter?
Hi,
If the filter is shared you can find it like this:
You can find and run any filters that you have created or that have been shared by other users.
In addition, there is an add-on that can help you see all your subscriptions called Subscriptions for Jira - Filter Manager that may help as well.
Cheers,
Branden
Is there any there way to find the subscriptions for the filter other than installing the Add on
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
There's a workaroud if you have database access,
these 2 SQL queries worked for me on Jira 6.0:
-- show all users who are subscribed to a single filter
SELECT *
FROM filtersubscription
WHERE filter_i_d =
(SELECT id
FROM searchrequest
WHERE filtername = '<filtername>');
-- show all filter subscriptions of a single user
SELECT fsub.*, sreq.filtername
FROM filtersubscription fsub, searchrequest sreq
WHERE fsub.username = '<username>'
AND fsub.filter_i_d = sreq.id
ORDER BY sreq.filtername;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.