diff options
author | Arnaud Zheng <arnaud-zg@users.noreply.github.com> | 2023-01-09 20:53:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-09 19:53:32 +0000 |
commit | e0d0dfb845a8f1eb35bce8ca5afcd76cb2ffbb35 (patch) | |
tree | e4a2d6e2a149b1a954ec42231368fdf57fd2a620 /plugins/jira/README.md | |
parent | 585084354e7ecf3b93c6eedb2ece70e914ee28b9 (diff) | |
download | zsh-e0d0dfb845a8f1eb35bce8ca5afcd76cb2ffbb35.tar.gz zsh-e0d0dfb845a8f1eb35bce8ca5afcd76cb2ffbb35.tar.bz2 zsh-e0d0dfb845a8f1eb35bce8ca5afcd76cb2ffbb35.zip |
feat(jira): support rapid view on rapid board mode (#9459)
* feat(jira): support rapid view on rapid board mode
* Update README to clarify how the rapid board/view works
Co-authored-by: Robby Russell <robby@planetargon.com>
Diffstat (limited to 'plugins/jira/README.md')
-rw-r--r-- | plugins/jira/README.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/jira/README.md b/plugins/jira/README.md index 3d6d323a4..5dc5bfc96 100644 --- a/plugins/jira/README.md +++ b/plugins/jira/README.md @@ -18,8 +18,8 @@ This plugin supplies one command, `jira`, through which all its features are exp jira # performs the default action jira new # opens a new issue +jira dashboard [rapid_view] # opens your JIRA dashboard jira mine # queries for your own issues -jira dashboard # opens your JIRA dashboard jira tempo # opens your JIRA Tempo jira reported [username] # queries for issues reported by a user jira assigned [username] # queries for issues assigned to a user @@ -67,6 +67,7 @@ echo "https://jira.atlassian.com" >> .jira-url * `$JIRA_NAME` - Your JIRA username; used as the default user for `assigned`/`reported` searches * `$JIRA_PREFIX` - Prefix added to issue ID arguments * `$JIRA_RAPID_BOARD` - Set to `true` if you use Rapid Board +* `$JIRA_RAPID_VIEW` - Set the default rapid view; it doesn't work if `$JIRA_RAPID_BOARD` is set to false * `$JIRA_DEFAULT_ACTION` - Action to do when `jira` is called with no arguments; defaults to "new" * `$JIRA_TEMPO_PATH` - Your JIRA tempo url path; defaults to "/secure/Tempo.jspa" |