This commit is contained in:
les
2020-02-20 20:50:59 +01:00
parent 5769d1a3ed
commit 2bd4d9feb2
2 changed files with 11 additions and 13 deletions

View File

@@ -91,7 +91,7 @@ module.exports = {
if (!name) { return res.status(400).send('Bad request.') }
if (name !== req.settings.instance_name) { return res.status(404).send(`No record found for ${name}`) }
const events = await Event.findAll( { include: [Tag, Place] })
const events = await Event.findAll({ include: [Tag, Place] })
debug('Inside outbox, should return all events from this user')