Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / fax_business_automation / fax_business_automation.socket.js
index b9c6e8a..5f03434 100644 (file)
@@ -1 +1,27 @@
-var _0x86a8=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x46\x61\x78\x42\x75\x73\x69\x6E\x65\x73\x73\x41\x75\x74\x6F\x6D\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\x55\x70\x64\x61\x74\x65","\x61\x66\x74\x65\x72\x44\x65\x73\x74\x72\x6F\x79","\x66\x61\x78\x5F\x62\x75\x73\x69\x6E\x65\x73\x73\x5F\x61\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x3A\x73\x61\x76\x65","\x65\x6D\x69\x74","\x66\x61\x78\x5F\x62\x75\x73\x69\x6E\x65\x73\x73\x5F\x61\x75\x74\x6F\x6D\x61\x74\x69\x6F\x6E\x3A\x72\x65\x6D\x6F\x76\x65"];_0x86a8[0];var FaxBusinessAutomation=require(_0x86a8[2])[_0x86a8[1]];exports[_0x86a8[3]]=function(_0xe6c8x2){FaxBusinessAutomation[_0x86a8[4]](function(_0xe6c8x3){onSave(_0xe6c8x2,_0xe6c8x3)});FaxBusinessAutomation[_0x86a8[5]](function(_0xe6c8x3,_0xe6c8x4){onSave(_0xe6c8x2,_0xe6c8x3)});FaxBusinessAutomation[_0x86a8[6]](function(_0xe6c8x3){onRemove(_0xe6c8x2,_0xe6c8x3)});};function onSave(_0xe6c8x2,_0xe6c8x3,_0xe6c8x6){_0xe6c8x2[_0x86a8[8]](_0x86a8[7],_0xe6c8x3)}function onRemove(_0xe6c8x2,_0xe6c8x3,_0xe6c8x6){_0xe6c8x2[_0x86a8[8]](_0x86a8[9],_0xe6c8x3)}
\ No newline at end of file
+/**
+ * Broadcast updates to client when the model changes
+ */
+
+'use strict';
+
+var FaxBusinessAutomation = require('../../models').FaxBusinessAutomation;
+
+exports.register = function(socket) {
+  FaxBusinessAutomation.afterCreate(function(doc) {
+    onSave(socket, doc);
+  });
+  FaxBusinessAutomation.afterUpdate(function(doc, options) {
+    onSave(socket, doc);
+  });
+  FaxBusinessAutomation.afterDestroy(function(doc) {
+    onRemove(socket, doc);
+  });
+}
+
+function onSave(socket, doc, cb) {
+  socket.emit('fax_business_automation:save', doc);
+}
+
+function onRemove(socket, doc, cb) {
+  socket.emit('fax_business_automation:remove', doc);
+}