diff options
author | Dmitry <32256512+shvimas@users.noreply.github.com> | 2020-05-21 19:11:18 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-21 18:11:18 +0200 |
commit | 31c2dc32c2b8e270d0ae10ddc059e192f70f204c (patch) | |
tree | 65d48fc8d85f29bec045373dacb740d32d60d8e6 | |
parent | 9050ed34d1f58e09012ed88db8bed1a0d7e74fb1 (diff) | |
download | zsh-31c2dc32c2b8e270d0ae10ddc059e192f70f204c.tar.gz zsh-31c2dc32c2b8e270d0ae10ddc059e192f70f204c.tar.bz2 zsh-31c2dc32c2b8e270d0ae10ddc059e192f70f204c.zip |
jira: add tempo command (#8928)
-rw-r--r-- | plugins/jira/README.md | 1 | ||||
-rw-r--r-- | plugins/jira/_jira | 1 | ||||
-rw-r--r-- | plugins/jira/jira.plugin.zsh | 3 |
3 files changed, 5 insertions, 0 deletions
diff --git a/plugins/jira/README.md b/plugins/jira/README.md index a211e34e0..a5633af77 100644 --- a/plugins/jira/README.md +++ b/plugins/jira/README.md @@ -19,6 +19,7 @@ jira # performs the default action jira new # opens a new issue 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 jira myissues # queries for you own issues diff --git a/plugins/jira/_jira b/plugins/jira/_jira index d64614233..1ac3eeda3 100644 --- a/plugins/jira/_jira +++ b/plugins/jira/_jira @@ -5,6 +5,7 @@ local -a _1st_arguments _1st_arguments=( 'new:create a new issue' 'dashboard:open the dashboard' + 'tempo:open the tempo' 'reported:search for issues reported by a user' 'assigned:search for issues assigned to a user' 'branch:open the issue named after the git branch of the current directory' diff --git a/plugins/jira/jira.plugin.zsh b/plugins/jira/jira.plugin.zsh index cb46f540b..22807e0ae 100644 --- a/plugins/jira/jira.plugin.zsh +++ b/plugins/jira/jira.plugin.zsh @@ -54,6 +54,9 @@ function jira() { else open_command "${jira_url}/secure/Dashboard.jspa" fi + elif [[ "$action" == "tempo" ]]; then + echo "Opening tempo" + open_command "${jira_url}/secure/Tempo.jspa" elif [[ "$action" == "dumpconfig" ]]; then echo "JIRA_URL=$jira_url" echo "JIRA_PREFIX=$jira_prefix" |