marc0l92 / obsidian-jira-issue

This plugin allows you to track the progress of Atlassian Jira issues from your Obsidian notes.
https://marc0l92.github.io/obsidian-jira-issue/
GNU Affero General Public License v3.0
239 stars 38 forks source link

Custom note title and flagged issues #23

Open seagullmouse opened 2 years ago

seagullmouse commented 2 years ago

Awesome plugin, game-changer, thanks so much!

I use the following query

resolution = Unresolved AND assignee = currentUser() AND (status = 'In Progress' OR status = 'Selected for Development') order by priority DESC

I use the Notes field, I would like the note title to be in the format "AAA-123 Summary".

How do I go about that?

Also, how do I show the flagged/impediment column in my table?

Thanks

marc0l92 commented 2 years ago

Jira allows to expand his basic funtionalities with custom fields and plugins.

Can you give me an example of this field that you call "flagged/impediments" ?

seagullmouse commented 2 years ago

The field is queryable using "Flagged[Checkboxes]" = Impediment. I'm not sure how to show that in the plugin? Thanks

marc0l92 commented 2 years ago

Are you referring to the feature described here?

https://community.atlassian.com/t5/Jira-Software-articles/Why-flagging-Jira-issues-is-so-cool/ba-p/1872469 https://confluence.atlassian.com/jirasoftwareserver/flagging-an-issue-938845533.html

marc0l92 commented 2 years ago

By the way, when you use the notes column in a jira-search fence, you will see the notes that starts with the issue key. This means that if you call a note "AAA-123" it will be linked to the table row, but you can also call it "AAA-123 the text you want" or even "AAA-123 the issue summary".

By default, if you click on the plus button of the note it will be created like "AAA-123" but you can rename it to add whatever you want after the issue key

seagullmouse commented 2 years ago

Are you referring to the feature described here?

https://community.atlassian.com/t5/Jira-Software-articles/Why-flagging-Jira-issues-is-so-cool/ba-p/1872469 https://confluence.atlassian.com/jirasoftwareserver/flagging-an-issue-938845533.html

Yes that is it

seagullmouse commented 2 years ago

By the way, when you use the notes column in a jira-search fence, you will see the notes that starts with the issue key. This means that if you call a note "AAA-123" it will be linked to the table row, but you can also call it "AAA-123 the text you want" or even "AAA-123 the issue summary".

By default, if you click on the plus button of the note it will be created like "AAA-123" but you can rename it to add whatever you want after the issue key

Do you mean that I can manually rename the issue on creation? I had imagined something like the following might be possible

columns: KEY, SUMMARY, REPORTER, PRIORITY, STATUS, '$KEY - $SUMMARY' as NOTES
gmkado commented 2 years ago

Not sure if this belongs here or in a separate issue, but I would also like ways of customizing the note title. Sometimes I have two JIRAs covered in one note with a title like "AAA-123, AAA-124 Summary". Is it possible to have this note show up in both rows in the jira-search fence? Right now it seems like the note must start with the jira issue number.