Built motion from commit 3594e56.|0.0.120
[motion.git] / server / api / report_integration / report_integration.controller.js
index fa049b3..8494c06 100644 (file)
@@ -1,105 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var ReportIntegration = require('../../models').ReportIntegration;
-
-// Get list of report_integrations
-exports.index = function(req, res) {
-  ReportIntegration
-    .findAll()
-    .then(function(report_integrations) {
-      return res.status(200).send(report_integrations);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get list of fields
-exports.describe = function(req, res) {
-  ReportIntegration
-    .describe()
-    .then(function(fields) {
-      return res.status(200).send(fields);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Get a single report_integration
-exports.show = function(req, res) {
-  ReportIntegration
-    .findById(req.params.id)
-    .then(function(report_integration) {
-      if (!report_integration) {
-        return res.sendStatus(404);
-      }
-      return res.send(report_integration);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Creates a new report_integration in the DB.
-exports.create = function(req, res) {
-  ReportIntegration
-    .create(req.body)
-    .then(function(report_integration) {
-      return res.status(201).send(report_integration);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing report_integration in the DB.
-exports.update = function(req, res) {
-  if (req.body.id) {
-    delete req.body.id;
-  }
-  ReportIntegration
-    .findById(req.params.id)
-    .then(function(report_integration) {
-      if (!report_integration) {
-        return res.sendStatus(404);
-      }
-      var updated = _.merge(report_integration, req.body);
-      updated.save()
-        .then(function() {
-          return res.status(200).send(report_integration);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a report_integration from the DB.
-exports.destroy = function(req, res) {
-  ReportIntegration
-    .findById(req.params.id)
-    .then(function(report_integration) {
-      if (!report_integration) {
-        return res.sendStatus(404);
-      }
-      report_integration.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 _0x3abd=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x52\x65\x70\x6F\x72\x74\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E","\x2E\x2E\x2F\x2E\x2E\x2F\x6D\x6F\x64\x65\x6C\x73","\x52\x65\x70\x6F\x72\x74\x49\x6E\x74\x65\x67\x72\x61\x74\x69\x6F\x6E\x48\x69\x73\x74\x6F\x72\x79","\x68\x69\x73\x74\x6F\x72\x79","\x2E\x2E\x2F\x2E\x2E\x2F\x63\x6F\x6E\x66\x69\x67\x2F\x75\x74\x69\x6C","\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","\x67\x65\x74\x51\x75\x65\x72\x79","\x66\x69\x6E\x64\x41\x6E\x64\x43\x6F\x75\x6E\x74\x41\x6C\x6C","\x64\x65\x73\x63\x72\x69\x62\x65","\x63\x72\x65\x61\x74\x65","\x62\x6F\x64\x79"];_0x3abd[0];var _=require(_0x3abd[1]);var ReportIntegration=require(_0x3abd[3])[_0x3abd[2]];var ReportIntegrationHistory=require(_0x3abd[3])[_0x3abd[5]][_0x3abd[4]];var Util=require(_0x3abd[6]);exports[_0x3abd[7]]= function(_0xb624x5,_0xb624x6,_0xb624x7){return ReportIntegration[_0x3abd[14]](Util[_0x3abd[13]](_0xb624x5[_0x3abd[12]]))[_0x3abd[11]](function(_0xb624x9){return _0xb624x6[_0x3abd[10]](200)[_0x3abd[9]](_0xb624x9)})[_0x3abd[8]](function(_0xb624x8){return handleError(_0xb624x6,_0xb624x8)})};exports[_0x3abd[15]]= function(_0xb624x5,_0xb624x6){return ReportIntegrationHistory[_0x3abd[15]]()[_0x3abd[11]](function(_0xb624xa){return _0xb624x6[_0x3abd[10]](200)[_0x3abd[9]](_0xb624xa)})[_0x3abd[8]](function(_0xb624x8){return handleError(_0xb624x6,_0xb624x8)})};exports[_0x3abd[16]]= function(_0xb624x5,_0xb624x6){return ReportIntegration[_0x3abd[16]](_0xb624x5[_0x3abd[17]])[_0x3abd[11]](function(_0xb624xb){return _0xb624x6[_0x3abd[10]](201)[_0x3abd[9]](_0xb624xb)})[_0x3abd[8]](function(_0xb624x8){return handleError(_0xb624x6,_0xb624x8)})};function handleError(_0xb624x6,_0xb624x8){return _0xb624x6[_0x3abd[10]](500)[_0x3abd[9]](_0xb624x8)}
\ No newline at end of file