summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorjules <jules@carbonpictures.com>2017-05-19 11:50:44 +0000
committerjules <jules@carbonpictures.com>2017-05-19 11:50:44 +0000
commit6add1fce8f6ec98ce273ba05b2f56df4b5cae878 (patch)
treeed018c206e54f244bf4c6f6bcb64d114250e3437 /lib
parent1b4bbdd157a6c5a47914b02915c7e6e84a73b573 (diff)
push notifications working!!
Diffstat (limited to 'lib')
-rw-r--r--lib/okpush/index.js5
-rw-r--r--lib/okpush/package.json2
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/okpush/index.js b/lib/okpush/index.js
index 36588aa..9ed64bc 100644
--- a/lib/okpush/index.js
+++ b/lib/okpush/index.js
@@ -109,7 +109,8 @@ function OKPush (options) {
})
// should work without middleware
- router.post('/add', bodyParser.urlencoded({ extended: false }), function (req, res) {
+ router.post('/add', bodyParser.json({}), function (req, res) {
+console.log(req)
db.addToken({
token: req.body.registrationId,
channel: req.body.channel,
@@ -118,7 +119,7 @@ function OKPush (options) {
res.sendStatus(200)
})
- router.post('/remove', bodyParser.urlencoded({ extended: false }), function (req, res) {
+ router.post('/remove', bodyParser.json({ extended: false }), function (req, res) {
db.removeToken({
token: req.body.registrationId,
channel: req.body.channel,
diff --git a/lib/okpush/package.json b/lib/okpush/package.json
index 87ca92c..140a969 100644
--- a/lib/okpush/package.json
+++ b/lib/okpush/package.json
@@ -9,7 +9,7 @@
"author": "okfocus <frontdesk@okfoc.us>",
"license": "LNT",
"dependencies": {
- "apn": "^2.1.1",
+ "apn": "^2.1.4",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"lodash": "^4.16.3",