mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:17:08 +00:00
Labels can be associated with events and can have display properties such as a description and colour, this is why we need an endpoint for the client to retrieve them.
9 lines
151 B
JavaScript
9 lines
151 B
JavaScript
|
|
module.exports = {
|
|
list: require('./list'),
|
|
get: require('./get'),
|
|
post: require('./post'),
|
|
put: require('./put'),
|
|
delete: require('./delete')
|
|
}
|