Built motion from commit 5e31ea4.|0.0.32
[motion.git] / server / api / sugarcrm_account / sugarcrm_account.socket.js
index 4f02052..859bf6d 100644 (file)
@@ -1 +1,24 @@
-var _0x4c42=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x53\x75\x67\x61\x72\x63\x72\x6D\x41\x63\x63\x6F\x75\x6E\x74","\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","\x73\x75\x67\x61\x72\x63\x72\x6D\x5F\x61\x63\x63\x6F\x75\x6E\x74\x3A\x73\x61\x76\x65","\x65\x6D\x69\x74","\x73\x75\x67\x61\x72\x63\x72\x6D\x5F\x61\x63\x63\x6F\x75\x6E\x74\x3A\x72\x65\x6D\x6F\x76\x65"];_0x4c42[0];var SugarcrmAccount=require(_0x4c42[2])[_0x4c42[1]];exports[_0x4c42[3]]=function(_0xd372x2){SugarcrmAccount[_0x4c42[4]](function(_0xd372x3){onSave(_0xd372x2,_0xd372x3)});SugarcrmAccount[_0x4c42[5]](function(_0xd372x3){onRemove(_0xd372x2,_0xd372x3)});};function onSave(_0xd372x2,_0xd372x3,_0xd372x5){_0xd372x2[_0x4c42[7]](_0x4c42[6],_0xd372x3)}function onRemove(_0xd372x2,_0xd372x3,_0xd372x5){_0xd372x2[_0x4c42[7]](_0x4c42[8],_0xd372x3)}
\ No newline at end of file
+/**
+ * Broadcast updates to client when the model changes
+ */
+
+'use strict';
+
+var SugarcrmAccount = require('../../models').SugarcrmAccount;
+
+exports.register = function(socket) {
+  SugarcrmAccount.afterCreate(function(doc) {
+    onSave(socket, doc);
+  });
+  SugarcrmAccount.afterDestroy(function(doc) {
+    onRemove(socket, doc);
+  });
+};
+
+function onSave(socket, doc, cb) {
+  socket.emit('sugarcrm_account:save', doc);
+}
+
+function onRemove(socket, doc, cb) {
+  socket.emit('sugarcrm_account:remove', doc);
+}