Built motion from commit 82438f7.|0.0.115
[motion.git] / server / api / user_has_chat_queue / user_has_chat_queue.controller.js
index b399892..f29b22e 100644 (file)
@@ -1,103 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var UserHasChatQueue = require('../../models').UserHasChatQueue;
-
-// Get list of userHasChatQueues
-exports.index = function(req, res) {
-  UserHasChatQueue
-    .findAll(req.query ? {
-      where: req.query
-    } : {})
-    .then(function(userHasChatQueues) {
-      return res.status(200).send(userHasChatQueues);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single userHasChatQueue
-exports.show = function(req, res) {
-  UserHasChatQueue
-    .findById(req.params.id)
-    .then(function(userHasChatQueue) {
-      if (!userHasChatQueue) {
-        return res.sendStatus(404);
-      }
-      return res.send(userHasChatQueue);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new userHasChatQueue in the DB.
-exports.create = function(req, res) {
-  UserHasChatQueue
-    .create(req.body)
-    .then(function(userHasChatQueue) {
-      return res.status(201).send(userHasChatQueue);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing userHasChatQueue in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  UserHasChatQueue
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(userHasChatQueue) {
-      if (!userHasChatQueue) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(userHasChatQueue, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(userHasChatQueue);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a userHasChatQueue from the DB.
-exports.destroy = function(req, res) {
-  UserHasChatQueue
-    .find({
-      where: {
-        id: req.params.id
-      }
-    })
-    .then(function(userHasChatQueue) {
-      if (!userHasChatQueue) {
-        return res.sendStatus(404);
-      }
-      userHasChatQueue.destroy()
-        .then(function() {
-          return res.sendStatus(204);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-function handleError(res, err) {
-  return res.status(500).send(err);
-}
+var _0x4c7b=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x55\x73\x65\x72\x48\x61\x73\x43\x68\x61\x74\x51\x75\x65\x75\x65","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x69\x6E\x64\x65\x78","\x63\x61\x74\x63\x68","\x73\x65\x6E\x64","\x73\x74\x61\x74\x75\x73","\x74\x68\x65\x6E","\x71\x75\x65\x72\x79","\x66\x69\x6E\x64\x41\x6C\x6C","\x73\x68\x6F\x77","\x73\x65\x6E\x64\x53\x74\x61\x74\x75\x73","\x69\x64","\x70\x61\x72\x61\x6D\x73","\x66\x69\x6E\x64\x42\x79\x49\x64","\x63\x72\x65\x61\x74\x65","\x62\x6F\x64\x79","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x66\x69\x6E\x64","\x64\x65\x73\x74\x72\x6F\x79"];_0x4c7b[0];var _=require(_0x4c7b[1]);var UserHasChatQueue=require(_0x4c7b[3])[_0x4c7b[2]];exports[_0x4c7b[4]]= function(_0x12b3x3,_0x12b3x4){UserHasChatQueue[_0x4c7b[10]](_0x12b3x3[_0x4c7b[9]]?{where:_0x12b3x3[_0x4c7b[9]]}:{})[_0x4c7b[8]](function(_0x12b3x6){return _0x12b3x4[_0x4c7b[7]](200)[_0x4c7b[6]](_0x12b3x6)})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})};exports[_0x4c7b[11]]= function(_0x12b3x3,_0x12b3x4){UserHasChatQueue[_0x4c7b[15]](_0x12b3x3[_0x4c7b[14]][_0x4c7b[13]])[_0x4c7b[8]](function(_0x12b3x7){if(!_0x12b3x7){return _0x12b3x4[_0x4c7b[12]](404)};return _0x12b3x4[_0x4c7b[6]](_0x12b3x7)})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})};exports[_0x4c7b[16]]= function(_0x12b3x3,_0x12b3x4){UserHasChatQueue[_0x4c7b[16]](_0x12b3x3[_0x4c7b[17]])[_0x4c7b[8]](function(_0x12b3x7){return _0x12b3x4[_0x4c7b[7]](201)[_0x4c7b[6]](_0x12b3x7)})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})};exports[_0x4c7b[18]]= function(_0x12b3x3,_0x12b3x4){if(_0x12b3x3[_0x4c7b[17]][_0x4c7b[13]]){delete _0x12b3x3[_0x4c7b[17]][_0x4c7b[13]]};UserHasChatQueue[_0x4c7b[21]]({where:{id:_0x12b3x3[_0x4c7b[14]][_0x4c7b[13]]}})[_0x4c7b[8]](function(_0x12b3x7){if(!_0x12b3x7){return _0x12b3x4[_0x4c7b[12]](404)};var _0x12b3x8=_[_0x4c7b[19]](_0x12b3x7,_0x12b3x3[_0x4c7b[17]]);_0x12b3x8[_0x4c7b[20]]()[_0x4c7b[8]](function(){return _0x12b3x4[_0x4c7b[7]](200)[_0x4c7b[6]](_0x12b3x7)})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})};exports[_0x4c7b[22]]= function(_0x12b3x3,_0x12b3x4){UserHasChatQueue[_0x4c7b[21]]({where:{id:_0x12b3x3[_0x4c7b[14]][_0x4c7b[13]]}})[_0x4c7b[8]](function(_0x12b3x7){if(!_0x12b3x7){return _0x12b3x4[_0x4c7b[12]](404)};_0x12b3x7[_0x4c7b[22]]()[_0x4c7b[8]](function(){return _0x12b3x4[_0x4c7b[12]](204)})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})})[_0x4c7b[5]](function(_0x12b3x5){return handleError(_0x12b3x4,_0x12b3x5)})};function handleError(_0x12b3x4,_0x12b3x5){return _0x12b3x4[_0x4c7b[7]](500)[_0x4c7b[6]](_0x12b3x5)}
\ No newline at end of file