mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 09:07:09 +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.
11 lines
245 B
JavaScript
11 lines
245 B
JavaScript
module.exports = {
|
|
event: require('./event'),
|
|
line: require('./line'),
|
|
project: require('./project'),
|
|
sequence: require('./sequence'),
|
|
user: require('./user'),
|
|
auth: require('./auth'),
|
|
gis: require('./gis'),
|
|
label: require('./label')
|
|
};
|