Built motion from commit 0adc88d.|0.0.117
[motion.git] / server / api / fax_application / fax_application.controller.js
index 59b09cb..4717e98 100644 (file)
@@ -1,94 +1 @@
-'use strict';
-var _ = require('lodash');
-var FaxApplication = require('../../models').FaxApplication;
-// Get list of fax_applications
-exports.index = function(req, res) {
-  FaxApplication.findAll({
-    where: req.query
-  }).then(function(fax_applications) {
-    return res.status(200).send(fax_applications);
-  }).catch(function(err) {
-    return handleError(res, err);
-  });
-};
-// Get a single fax_application
-exports.show = function(req, res) {
-  FaxApplication.findById(req.params.id).then(function(fax_application) {
-    if (!fax_application) {
-      return res.sendStatus(404);
-    }
-    return res.send(fax_application);
-  }).catch(function(err) {
-    return handleError(res, err);
-  });
-};
-// Creates a new fax_application in the DB.
-exports.create = function(req, res, next) {
-  console.log(req.body);
-  FaxApplication.max('priority', {
-    where: {
-      FaxAccountId: req.body.FaxAccountId
-    }
-  }).then(function(max) {
-    // SET PRIORITY
-    req.body.priority = max ? ++max : 1;
-    FaxApplication.create(req.body).then(function(faxApplication) {
-      return res.status(201).send(faxApplication);
-    }).catch(function(err) {
-      return next(err);
-    });
-    console.log(max);
-  }).catch(function(err) {
-    next(err);
-  });
-  // FaxApplication
-  // .create(req.body)
-  // .then(function(fax_application) {
-  //   return res.status(201).send(fax_application);
-  // })
-  // .catch(function(err) {
-  //   return handleError(res, err);
-  // });
-};
-// Updates an existing fax_application in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  FaxApplication.findById(req.params.id).then(function(fax_application) {
-    if (!fax_application) {
-      return res.sendStatus(404);
-    }
-    var updated = _.merge(fax_application, req.body);
-    updated.save().then(function() {
-      return res.status(200).send(fax_application);
-    }).catch(function(err) {
-      return handleError(res, err);
-    });
-  }).catch(function(err) {
-    return handleError(res, err);
-  });
-};
-// Deletes a fax_application from the DB.
-exports.destroy = function(req, res) {
-  FaxApplication.find({
-    where: {
-      id: req.params.id
-    }
-  }).then(function(fax_application) {
-    if (!fax_application) {
-      return res.sendStatus(404);
-    }
-    fax_application.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 _0x5613=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x46\x61\x78\x41\x70\x70\x6C\x69\x63\x61\x74\x69\x6F\x6E","\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","\x6C\x6F\x67","\x70\x72\x69\x6F\x72\x69\x74\x79","\x46\x61\x78\x41\x63\x63\x6F\x75\x6E\x74\x49\x64","\x6D\x61\x78","\x75\x70\x64\x61\x74\x65","\x6D\x65\x72\x67\x65","\x73\x61\x76\x65","\x64\x65\x73\x74\x72\x6F\x79","\x66\x69\x6E\x64"];_0x5613[0];var _=require(_0x5613[1]);var FaxApplication=require(_0x5613[3])[_0x5613[2]];exports[_0x5613[4]]= function(_0xd519x3,_0xd519x4){FaxApplication[_0x5613[10]]({where:_0xd519x3[_0x5613[9]]})[_0x5613[8]](function(_0xd519x6){return _0xd519x4[_0x5613[7]](200)[_0x5613[6]](_0xd519x6)})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})};exports[_0x5613[11]]= function(_0xd519x3,_0xd519x4){FaxApplication[_0x5613[15]](_0xd519x3[_0x5613[14]][_0x5613[13]])[_0x5613[8]](function(_0xd519x7){if(!_0xd519x7){return _0xd519x4[_0x5613[12]](404)};return _0xd519x4[_0x5613[6]](_0xd519x7)})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})};exports[_0x5613[16]]= function(_0xd519x3,_0xd519x4,_0xd519x8){console[_0x5613[18]](_0xd519x3[_0x5613[17]]);FaxApplication[_0x5613[21]](_0x5613[19],{where:{FaxAccountId:_0xd519x3[_0x5613[17]][_0x5613[20]]}})[_0x5613[8]](function(_0xd519x9){_0xd519x3[_0x5613[17]][_0x5613[19]]= _0xd519x9?++_0xd519x9:1;FaxApplication[_0x5613[16]](_0xd519x3[_0x5613[17]])[_0x5613[8]](function(_0xd519xa){return _0xd519x4[_0x5613[7]](201)[_0x5613[6]](_0xd519xa)})[_0x5613[5]](function(_0xd519x5){return _0xd519x8(_0xd519x5)});console[_0x5613[18]](_0xd519x9)})[_0x5613[5]](function(_0xd519x5){_0xd519x8(_0xd519x5)})};exports[_0x5613[22]]= function(_0xd519x3,_0xd519x4){if(_0xd519x3[_0x5613[17]][_0x5613[13]]){delete _0xd519x3[_0x5613[17]][_0x5613[13]]};FaxApplication[_0x5613[15]](_0xd519x3[_0x5613[14]][_0x5613[13]])[_0x5613[8]](function(_0xd519x7){if(!_0xd519x7){return _0xd519x4[_0x5613[12]](404)};var _0xd519xb=_[_0x5613[23]](_0xd519x7,_0xd519x3[_0x5613[17]]);_0xd519xb[_0x5613[24]]()[_0x5613[8]](function(){return _0xd519x4[_0x5613[7]](200)[_0x5613[6]](_0xd519x7)})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})};exports[_0x5613[25]]= function(_0xd519x3,_0xd519x4){FaxApplication[_0x5613[26]]({where:{id:_0xd519x3[_0x5613[14]][_0x5613[13]]}})[_0x5613[8]](function(_0xd519x7){if(!_0xd519x7){return _0xd519x4[_0x5613[12]](404)};_0xd519x7[_0x5613[25]]()[_0x5613[8]](function(){return _0xd519x4[_0x5613[12]](204)})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})})[_0x5613[5]](function(_0xd519x5){return handleError(_0xd519x4,_0xd519x5)})};function handleError(_0xd519x4,_0xd519x5){return _0xd519x4[_0x5613[7]](500)[_0x5613[6]](_0xd519x5)}
\ No newline at end of file