Built motion from commit 7767ffc.|0.0.132
[motion.git] / server / api / fax_application / fax_application.controller.js
index 59b09cb..f8c523c 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 _0x2636=["\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"];_0x2636[0];var _=require(_0x2636[1]);var FaxApplication=require(_0x2636[3])[_0x2636[2]];exports[_0x2636[4]]= function(_0x7123x3,_0x7123x4){FaxApplication[_0x2636[10]]({where:_0x7123x3[_0x2636[9]]})[_0x2636[8]](function(_0x7123x6){return _0x7123x4[_0x2636[7]](200)[_0x2636[6]](_0x7123x6)})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})};exports[_0x2636[11]]= function(_0x7123x3,_0x7123x4){FaxApplication[_0x2636[15]](_0x7123x3[_0x2636[14]][_0x2636[13]])[_0x2636[8]](function(_0x7123x7){if(!_0x7123x7){return _0x7123x4[_0x2636[12]](404)};return _0x7123x4[_0x2636[6]](_0x7123x7)})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})};exports[_0x2636[16]]= function(_0x7123x3,_0x7123x4,_0x7123x8){console[_0x2636[18]](_0x7123x3[_0x2636[17]]);FaxApplication[_0x2636[21]](_0x2636[19],{where:{FaxAccountId:_0x7123x3[_0x2636[17]][_0x2636[20]]}})[_0x2636[8]](function(_0x7123x9){_0x7123x3[_0x2636[17]][_0x2636[19]]= _0x7123x9?++_0x7123x9:1;FaxApplication[_0x2636[16]](_0x7123x3[_0x2636[17]])[_0x2636[8]](function(_0x7123xa){return _0x7123x4[_0x2636[7]](201)[_0x2636[6]](_0x7123xa)})[_0x2636[5]](function(_0x7123x5){return _0x7123x8(_0x7123x5)});console[_0x2636[18]](_0x7123x9)})[_0x2636[5]](function(_0x7123x5){_0x7123x8(_0x7123x5)})};exports[_0x2636[22]]= function(_0x7123x3,_0x7123x4){if(_0x7123x3[_0x2636[17]][_0x2636[13]]){delete _0x7123x3[_0x2636[17]][_0x2636[13]]};FaxApplication[_0x2636[15]](_0x7123x3[_0x2636[14]][_0x2636[13]])[_0x2636[8]](function(_0x7123x7){if(!_0x7123x7){return _0x7123x4[_0x2636[12]](404)};var _0x7123xb=_[_0x2636[23]](_0x7123x7,_0x7123x3[_0x2636[17]]);_0x7123xb[_0x2636[24]]()[_0x2636[8]](function(){return _0x7123x4[_0x2636[7]](200)[_0x2636[6]](_0x7123x7)})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})};exports[_0x2636[25]]= function(_0x7123x3,_0x7123x4){FaxApplication[_0x2636[26]]({where:{id:_0x7123x3[_0x2636[14]][_0x2636[13]]}})[_0x2636[8]](function(_0x7123x7){if(!_0x7123x7){return _0x7123x4[_0x2636[12]](404)};_0x7123x7[_0x2636[25]]()[_0x2636[8]](function(){return _0x7123x4[_0x2636[12]](204)})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})})[_0x2636[5]](function(_0x7123x5){return handleError(_0x7123x4,_0x7123x5)})};function handleError(_0x7123x4,_0x7123x5){return _0x7123x4[_0x2636[7]](500)[_0x2636[6]](_0x7123x5)}
\ No newline at end of file