Built motion from commit 82438f7.|0.0.115
[motion.git] / server / api / fax_application / fax_application.controller.js
index 59b09cb..be6e3a8 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 _0x7cfb=["\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"];_0x7cfb[0];var _=require(_0x7cfb[1]);var FaxApplication=require(_0x7cfb[3])[_0x7cfb[2]];exports[_0x7cfb[4]]= function(_0x8e5bx3,_0x8e5bx4){FaxApplication[_0x7cfb[10]]({where:_0x8e5bx3[_0x7cfb[9]]})[_0x7cfb[8]](function(_0x8e5bx6){return _0x8e5bx4[_0x7cfb[7]](200)[_0x7cfb[6]](_0x8e5bx6)})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})};exports[_0x7cfb[11]]= function(_0x8e5bx3,_0x8e5bx4){FaxApplication[_0x7cfb[15]](_0x8e5bx3[_0x7cfb[14]][_0x7cfb[13]])[_0x7cfb[8]](function(_0x8e5bx7){if(!_0x8e5bx7){return _0x8e5bx4[_0x7cfb[12]](404)};return _0x8e5bx4[_0x7cfb[6]](_0x8e5bx7)})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})};exports[_0x7cfb[16]]= function(_0x8e5bx3,_0x8e5bx4,_0x8e5bx8){console[_0x7cfb[18]](_0x8e5bx3[_0x7cfb[17]]);FaxApplication[_0x7cfb[21]](_0x7cfb[19],{where:{FaxAccountId:_0x8e5bx3[_0x7cfb[17]][_0x7cfb[20]]}})[_0x7cfb[8]](function(_0x8e5bx9){_0x8e5bx3[_0x7cfb[17]][_0x7cfb[19]]= _0x8e5bx9?++_0x8e5bx9:1;FaxApplication[_0x7cfb[16]](_0x8e5bx3[_0x7cfb[17]])[_0x7cfb[8]](function(_0x8e5bxa){return _0x8e5bx4[_0x7cfb[7]](201)[_0x7cfb[6]](_0x8e5bxa)})[_0x7cfb[5]](function(_0x8e5bx5){return _0x8e5bx8(_0x8e5bx5)});console[_0x7cfb[18]](_0x8e5bx9)})[_0x7cfb[5]](function(_0x8e5bx5){_0x8e5bx8(_0x8e5bx5)})};exports[_0x7cfb[22]]= function(_0x8e5bx3,_0x8e5bx4){if(_0x8e5bx3[_0x7cfb[17]][_0x7cfb[13]]){delete _0x8e5bx3[_0x7cfb[17]][_0x7cfb[13]]};FaxApplication[_0x7cfb[15]](_0x8e5bx3[_0x7cfb[14]][_0x7cfb[13]])[_0x7cfb[8]](function(_0x8e5bx7){if(!_0x8e5bx7){return _0x8e5bx4[_0x7cfb[12]](404)};var _0x8e5bxb=_[_0x7cfb[23]](_0x8e5bx7,_0x8e5bx3[_0x7cfb[17]]);_0x8e5bxb[_0x7cfb[24]]()[_0x7cfb[8]](function(){return _0x8e5bx4[_0x7cfb[7]](200)[_0x7cfb[6]](_0x8e5bx7)})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})};exports[_0x7cfb[25]]= function(_0x8e5bx3,_0x8e5bx4){FaxApplication[_0x7cfb[26]]({where:{id:_0x8e5bx3[_0x7cfb[14]][_0x7cfb[13]]}})[_0x7cfb[8]](function(_0x8e5bx7){if(!_0x8e5bx7){return _0x8e5bx4[_0x7cfb[12]](404)};_0x8e5bx7[_0x7cfb[25]]()[_0x7cfb[8]](function(){return _0x8e5bx4[_0x7cfb[12]](204)})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})})[_0x7cfb[5]](function(_0x8e5bx5){return handleError(_0x8e5bx4,_0x8e5bx5)})};function handleError(_0x8e5bx4,_0x8e5bx5){return _0x8e5bx4[_0x7cfb[7]](500)[_0x7cfb[6]](_0x8e5bx5)}
\ No newline at end of file