Title: | Reports from Trello in R |
---|---|
Description: | Creates reports from Trello, a collaborative, project organization and list-making application. <https://trello.com/> Reports are created by comparing individual Trello board cards from two different points in time and documenting any changes made to the cards. |
Authors: | Andrew Guide [aut, cre], Thomas Stewart [aut] |
Maintainer: | Andrew Guide <[email protected]> |
License: | MIT + file LICENSE |
Version: | 1.0.1 |
Built: | 2024-11-13 03:13:03 UTC |
Source: | https://github.com/thomasgstewart/repello |
This function allows you to obtain checklists and card info for all cards on a chosen board.
all_checklists(board_name, save = FALSE)
all_checklists(board_name, save = FALSE)
board_name |
The name of the board you want to browse. |
save |
Set to TRUE to save a copy of the card information list. |
This function allows you to obtain the cards and the date of most recent modification for the cards on a specified board.
cards_info(board_id)
cards_info(board_id)
board_id |
The ID of the board you want to browse. |
This function allows you to compare checklists for new items and completions.
check_new_tasks(list1, list2)
check_new_tasks(list1, list2)
list1 |
A checklist for a Trello card. |
list2 |
A more recent checklist for the same card. |
This function compares checklists for all items in a list of lists.
compare_checklists(old_list, new_list)
compare_checklists(old_list, new_list)
old_list |
A prior list of Trello activities. |
new_list |
A more recent list of Trello activities. |
This function allows you to obtain the ID of the Trello board you want to view.
get_board_id(board_name)
get_board_id(board_name)
board_name |
The name of the board you want to browse. |
This function allows you to obtain a checklist for a card of interest.
get_checklist(board_id, card_name)
get_checklist(board_id, card_name)
board_id |
The ID of the board you want to browse. |
card_name |
The name of the card you want to view |
This function allows you to set the user key and token for API calls. You can either link to text files which contain the key and token, or you can leave the arguments blank and manually input the key and token when prompted
set_key_token(key_file = NULL, token_file = NULL, path = getwd())
set_key_token(key_file = NULL, token_file = NULL, path = getwd())
key_file |
The name of the file which contains the Trello key |
token_file |
The name of the file which contains the user token |
path |
The path to the location of the user token file |
This function allows you to check for updates to all cards on a Trello board, comparing to a prior board setting.
trello_updates(board_name, prior = FALSE, recent = FALSE, save = FALSE)
trello_updates(board_name, prior = FALSE, recent = FALSE, save = FALSE)
board_name |
The name of the board you want to browse. |
prior |
The name of the prior Trello list you want to compare to. Defaults to most recently saved Trello object prior to current save. |
recent |
The name of the Trello board to compare to a prior Trello object. By default will use current object grab as most recent object. |
save |
Set to TRUE to save a copy of the current Trello object. |