slush-y
Version:
A slush generator for Best Practices with AngularJS Fullstack applications.
23 lines (19 loc) • 473 B
JavaScript
/**
* Broadcast updates to client when the model changes
*/
;
var article = require('./article.model');
exports.register = function(socket) {
article.schema.post('save', function (doc) {
onSave(socket, doc);
});
article.schema.post('remove', function (doc) {
onRemove(socket, doc);
});
}
function onSave(socket, doc, cb) {
socket.emit('articles:save', doc);
}
function onRemove(socket, doc, cb) {
socket.emit('articles:remove', doc);
}