When a user performs a simple search for "searchtext", Jira performs a search with this JQL string:
text ~ "searchtext"
I have installed a plugin that also searches through attachments. Is it possible to configure a simple search to generate this JQL string instead?
text ~ "searchtext" OR issue IN havingAttachments("searchtext")
Hi David,
an approach via plugin: add a custom JQL function for your search param. Add a custom field, which stores the searchable content of the attachments (be careful of the file size). The custom JQL function should now search in the custom field. For some documentation read this lines.
Unfortunately I think you cannot add such subqueries you mentioned as a custom JQL function.
Hope this helps!
Hi Mirko, thanks for your suggestion. I don't think it will work in my case, because
It would be so much easier to just change the automatically created JQL query instead.
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.