Closed willmurphyscode closed 6 years ago
Tentative API:
GET /ticketing/tickets/
returns a bag of ticket-related information as a giant array
[
{
"id": 432,
"topicOrMessage": "topic"
}
]
(for additional fields, see the individual routes so that we don't duplicate this all over the place)
GET /ticketing/tickets/:topicOrMessage/:id
returns a bag of ticket-related information derived from ticket tags:
{
"id": 432,
"topicOrMessage": "topic",
"priority": "immediate",
"status": "waiting",
"reasons": ["onboarding", "helpdesk"],
"otherTags": ["location-america", "language-english"],
}
Here's what we've learned:
model
on the ember controller.