Skip to content
Snippets Groups Projects
Commit cf7513df authored by Daniel's avatar Daniel
Browse files

app: Add several bugfixes

parent 7faf5ace
Branches
No related merge requests found
...@@ -7,13 +7,14 @@ ...@@ -7,13 +7,14 @@
const express = require('express') const express = require('express')
const bodyParser = require('body-parser') const bodyParser = require('body-parser')
const chat = require('./chat')
const driver = require('./driver') const driver = require('./driver')
let app = express.Router() let app = express.Router()
app.use(bodyParser.json()) app.use(bodyParser.json())
app.use('/chat', chat)
app.use('/driver', driver) app.use('/driver', driver)
// app.use('/user', user)
module.exports = app module.exports = app
...@@ -24,6 +24,10 @@ module.exports = { ...@@ -24,6 +24,10 @@ module.exports = {
}, },
async sendAsync (id, message) { async sendAsync (id, message) {
await messaging.sendToDevice(db[id], message) await messaging.sendToDevice(db[id], {
notification: {
body: message
}
})
} }
} }
...@@ -22,6 +22,6 @@ module.exports = { ...@@ -22,6 +22,6 @@ module.exports = {
}, },
async sendAsync (id, message) { async sendAsync (id, message) {
await cloud.send(db[id], message) await cloud.sendAsync(db[id], message)
} }
} }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment