Built motion from commit e155ad4.|0.0.101
[motion.git] / server / api / fax_application / fax_application.controller.js
index 59b09cb..538805d 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 _0xc343=["\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"];_0xc343[0];var _=require(_0xc343[1]);var FaxApplication=require(_0xc343[3])[_0xc343[2]];exports[_0xc343[4]]=function(_0xf252x3,_0xf252x4){FaxApplication[_0xc343[10]]({where:_0xf252x3[_0xc343[9]]})[_0xc343[8]](function(_0xf252x6){return _0xf252x4[_0xc343[7]](200)[_0xc343[6]](_0xf252x6)})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})};exports[_0xc343[11]]=function(_0xf252x3,_0xf252x4){FaxApplication[_0xc343[15]](_0xf252x3[_0xc343[14]][_0xc343[13]])[_0xc343[8]](function(_0xf252x7){if(!_0xf252x7){return _0xf252x4[_0xc343[12]](404)};return _0xf252x4[_0xc343[6]](_0xf252x7)})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})};exports[_0xc343[16]]=function(_0xf252x3,_0xf252x4,_0xf252x8){console[_0xc343[18]](_0xf252x3[_0xc343[17]]);FaxApplication[_0xc343[21]](_0xc343[19],{where:{FaxAccountId:_0xf252x3[_0xc343[17]][_0xc343[20]]}})[_0xc343[8]](function(_0xf252x9){_0xf252x3[_0xc343[17]][_0xc343[19]]=_0xf252x9?++_0xf252x9:1;FaxApplication[_0xc343[16]](_0xf252x3[_0xc343[17]])[_0xc343[8]](function(_0xf252xa){return _0xf252x4[_0xc343[7]](201)[_0xc343[6]](_0xf252xa)})[_0xc343[5]](function(_0xf252x5){return _0xf252x8(_0xf252x5)});console[_0xc343[18]](_0xf252x9)})[_0xc343[5]](function(_0xf252x5){_0xf252x8(_0xf252x5)})};exports[_0xc343[22]]=function(_0xf252x3,_0xf252x4){if(_0xf252x3[_0xc343[17]][_0xc343[13]]){delete _0xf252x3[_0xc343[17]][_0xc343[13]]};FaxApplication[_0xc343[15]](_0xf252x3[_0xc343[14]][_0xc343[13]])[_0xc343[8]](function(_0xf252x7){if(!_0xf252x7){return _0xf252x4[_0xc343[12]](404)};var _0xf252xb=_[_0xc343[23]](_0xf252x7,_0xf252x3[_0xc343[17]]);_0xf252xb[_0xc343[24]]()[_0xc343[8]](function(){return _0xf252x4[_0xc343[7]](200)[_0xc343[6]](_0xf252x7)})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})};exports[_0xc343[25]]=function(_0xf252x3,_0xf252x4){FaxApplication[_0xc343[26]]({where:{id:_0xf252x3[_0xc343[14]][_0xc343[13]]}})[_0xc343[8]](function(_0xf252x7){if(!_0xf252x7){return _0xf252x4[_0xc343[12]](404)};_0xf252x7[_0xc343[25]]()[_0xc343[8]](function(){return _0xf252x4[_0xc343[12]](204)})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})})[_0xc343[5]](function(_0xf252x5){return handleError(_0xf252x4,_0xf252x5)})};function handleError(_0xf252x4,_0xf252x5){return _0xf252x4[_0xc343[7]](500)[_0xc343[6]](_0xf252x5)}
\ No newline at end of file