Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / mail_application / mail_application.socket.js
index caba6d0..ead0c90 100644 (file)
@@ -1 +1,24 @@
-var _0x8ae1=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x4D\x61\x69\x6C\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x72\x65\x67\x69\x73\x74\x65\x72","\x61\x66\x74\x65\x72\x43\x72\x65\x61\x74\x65","\x61\x66\x74\x65\x72\x44\x65\x73\x74\x72\x6F\x79","\x6D\x61\x69\x6C\x5F\x61\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x3A\x73\x61\x76\x65","\x65\x6D\x69\x74","\x6D\x61\x69\x6C\x5F\x61\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E\x3A\x72\x65\x6D\x6F\x76\x65"];_0x8ae1[0];var mailApplication=require(_0x8ae1[2])[_0x8ae1[1]];exports[_0x8ae1[3]]=function(_0x143ax2){mailApplication[_0x8ae1[4]](function(_0x143ax3){onSave(_0x143ax2,_0x143ax3)});mailApplication[_0x8ae1[5]](function(_0x143ax3){onRemove(_0x143ax2,_0x143ax3)});};function onSave(_0x143ax2,_0x143ax3,_0x143ax5){_0x143ax2[_0x8ae1[7]](_0x8ae1[6],_0x143ax3)}function onRemove(_0x143ax2,_0x143ax3,_0x143ax5){_0x143ax2[_0x8ae1[7]](_0x8ae1[8],_0x143ax3)}
\ No newline at end of file
+/**
+ * Broadcast updates to client when the model changes
+ */
+
+'use strict';
+
+var mailApplication = require('../../models').MailApplication;
+
+exports.register = function(socket) {
+  mailApplication.afterCreate(function(doc) {
+    onSave(socket, doc);
+  });
+  mailApplication.afterDestroy(function(doc) {
+    onRemove(socket, doc);
+  });
+}
+
+function onSave(socket, doc, cb) {
+  socket.emit('mail_application:save', doc);
+}
+
+function onRemove(socket, doc, cb) {
+  socket.emit('mail_application:remove', doc);
+}