1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00
wtf/_site/content/modules/trello.md
2018-08-15 13:25:28 -07:00

1.6 KiB

title, date, draft, weight
title date draft weight
Trello 2018-05-10T10:44:35-07:00 false 250
trello screenshot

Displays all Trello cards on specified lists.

Source Code

wtf/trello/

Configuration

Single Trello List

trello:
  accessToken: "7b8b14f8743a408a93276d7155dd9ee2"
  apiKey: "3276d7155dd9ee27b8b14f8743a408a9"
  board: Main
  enabled: true
  list: "Todo"
  position:
    height: 1
    left: 2
    top: 0
    width: 1
  refreshInterval: 3600
  username: myname

Multiple Trello Lists

If you want to monitor multiple Trello lists, use the following configuration (note the difference in list):

trello:
  accessToken: "7b8b14f8743a408a93276d7155dd9ee2"
  apiKey: "3276d7155dd9ee27b8b14f8743a408a9"
  board: Main
  enabled: true
  list: ["Todo", "Done"]
  position:
    height: 1
    left: 2
    top: 0
    width: 1
  refreshInterval: 3600
  username: myname

Attributes

accessToken
Value: Your Trello access token.

apiKey
Value: Your Trello API key.

board
The name of the Trello board.

enabled
Determines whether or not this module is executed and if its data displayed onscreen.
Values: true, false.

list
The Trello lists to fetch cards from.

refreshInterval
How often, in seconds, this module will update its data.
Values: A positive integer, 0..n.

username
Your Trello username.

position
Where in the grid this module's widget will be displayed.