loopbackjs - From which file do I send a push notification in strongloop? -


i trying set push notifications strongloop. don't understand file code below lives in. docs don't say, confusing newbies.

i understand have add push component loopback restful api application, have done. how reference push component restful api app? where's 'glue'?

http://docs.strongloop.com/display/public/lb/push+notifications

 var badge = 1;     app.post('/notify/:id', function (req, res, next) {      var note = new notification({        expirationinterval: 3600, // expires 1 hour now.        badge: badge++,        sound: 'ping.aiff',        alert: '\ud83d\udce7 \u2709 ' + 'hello',        messagefrom: 'ray'      });       pushmodel.notifybyid(req.params.id, note, function(err) {        if (err) {          // let default error handling middleware          // report error in appropriate way          return next(err);        }        console.log('pushing notification %j', req.params.id);        res.send(200, 'ok');      });     }); 

this should live in app.js file seen in example here:

https://github.com/strongloop/loopback-component-push/blob/master/example/server/app.js#l137-l145


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -