JRJurman / automated-ticket-printer

This project is an automated solution to print tickets and items as they get assigned.
MIT License
11 stars 1 forks source link

Labels #10

Open JRJurman opened 8 years ago

JRJurman commented 8 years ago

Almost every ticket tracking system uses Labels, Milestones, and Assignees. These should be arrays in the spec of the tickets.

e.g.

var exampleTicket = {
  watch: "Example Watch",
  title: "Messages are lost in queue",
  project: "Chats-R-Us",
  number: "#27a",
  body: "When sending messages using ...",
  labels: [ "bug", "help wanted" ],
  milestones: [ ],
  assignees: [ "jrjurman" ]
};