mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
83 lines
1.8 KiB
Markdown
83 lines
1.8 KiB
Markdown
---
|
|
title: "Modules: Jira"
|
|
date: 2018-05-10T10:44:35-07:00
|
|
draft: false
|
|
---
|
|
|
|
Displays all Jira issues assigned to you for the specified project.
|
|
|
|
<img src="/imgs/modules/jira.png" width="640" height="188" alt="jira screenshot" />
|
|
|
|
## Source Code
|
|
|
|
```bash
|
|
wtf/jira/
|
|
```
|
|
|
|
## Required ENV Variables
|
|
|
|
<span class="caption">Key:</span> `WTF_JIRA_API_KEY` <br />
|
|
<span class="caption">Value:</span> Your <a href="https://confluence.atlassian.com/cloud/api-tokens-938839638.html">Jira API</a> key.
|
|
|
|
## Keyboard Commands
|
|
|
|
None.
|
|
|
|
## Configuration
|
|
|
|
```yaml
|
|
jira:
|
|
colors:
|
|
rows:
|
|
even: "lightblue"
|
|
odd: "white"
|
|
domain: "https://umbrellacorp.atlassian.net"
|
|
email: "chriscummer@me.com"
|
|
enabled: true
|
|
position:
|
|
top: 4
|
|
left: 1
|
|
height: 1
|
|
width: 2
|
|
project: "CORE"
|
|
refreshInterval: 900
|
|
username: "chris.cummer"
|
|
```
|
|
|
|
### Attributes
|
|
|
|
`colors.rows.even` <br />
|
|
Define the foreground color for even-numbered rows. <br />
|
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
|
color name</a>.
|
|
|
|
`colors.rows.odd` <br />
|
|
Define the foreground color for odd-numbered rows. <br />
|
|
Values: Any <a href="https://en.wikipedia.org/wiki/X11_color_names">X11
|
|
color name</a>.
|
|
|
|
`domain` <br />
|
|
Your Jira corporate domain. <br />
|
|
Values: A valid URI.
|
|
|
|
`email` <br />
|
|
The email address associated with your Jira account. <br />
|
|
Values: A valid email address string.
|
|
|
|
`enabled` <br />
|
|
Determines whether or not this module is executed and if its data displayed onscreen. <br />
|
|
Values: `true`, `false`.
|
|
|
|
`position` <br />
|
|
Defines where in the grid this module's widget will be displayed. <br />
|
|
|
|
`project` <br />
|
|
The Jira project to fetch information for. <br />
|
|
|
|
`refreshInterval` <br />
|
|
How often, in seconds, this module will update its data. <br />
|
|
Values: A positive integer, `0..n`.
|
|
|
|
`username` <br />
|
|
Your Jira username. <br />
|