crabfit/crabfit-backend/routes/getPeople.js
2021-02-26 13:19:13 +11:00

28 lines
373 B
JavaScript

module.exports = (req, res) => {
const { eventId } = req.params;
if (eventId) {
res.send({
people: [
{
name: 'Laura',
password: null,
eventId: 'event-name-4701240',
availability: [
[
'START',
'END',
],
[
'START',
'END',
],
],
},
],
});
} else {
res.sendStatus(404);
}
};