Our JIRA deployment's shared filters are getting out of control due to the default "Share with Everyone" designation when they're created. I have read the posts about removing the Share with Everyone option from the drop-down, but I was hoping there's a way to change the current filters to NOT be shared with everyone?
Any help would be appreciated.
nope. ntot without tinkering with the db :)
This sql is a good starting point to list all filters with share type as "share with everyone"
SELECT sr.filtername, sp.sharetype AS current_share_state, sr.username AS owner_name, sr.reqcontent AS JQL
FROM searchrequest sr
INNER JOIN sharepermissions sp ON sp.entityid = sr.id
WHERE sp.sharetype='global' and sp.entitytype ='SearchRequest';
Tips:
Thanks. I figured this was probably the only way, but I thought I'd ask. Thanks for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.