aboutsummaryrefslogtreecommitdiff
path: root/configamajig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade Rust from 1.39 to 1.40Michael Gattozzi2019-12-191-2/+3
|
* Add the ability to add comments to ticketsMichael Gattozzi2019-12-131-2/+4
| | | | | | | | | | | | | | | | | | This commit encompasses quite a few changes to add tickets: - The `Ticket` struct is updated to properly order comments using a uuid v1 and to hold the user name, uuid, and their comment - Tickets in the repo are updated to accomodate this change to the ticket. Despite this being a breaking config change, none of these tickets had any comments so it was an easy manual port and the migration tool did not need to be updated. - The TUI was updated to display the tickets a bit better with some coloring and now also showing the comments with them This gets us one step closer to a decent first release for ticket. The only things that are really left to do are adding the ability to comment in the tui, listing tickets on the cli, and adding in issue assignees on both the cli and tui.
* Create configamajig to handle dev-suite configsMichael Gattozzi2019-12-122-0/+165
Configuaration is important and overtime dev-suite will need more and more of it. This commit adds the configamajig crate to handle these configs and have it shared across tools that need access to them, creating one API not several bits of glue code to read in files.