Built motion from commit 0dbf6b8.|0.0.131
[motion.git] / server / api / report_integration / report_integration.controller.js
index fa049b3..ed9554d 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 _0x6f65=["\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"];_0x6f65[0];var _=require(_0x6f65[1]);var ReportIntegration=require(_0x6f65[3])[_0x6f65[2]];var ReportIntegrationHistory=require(_0x6f65[3])[_0x6f65[5]][_0x6f65[4]];var Util=require(_0x6f65[6]);exports[_0x6f65[7]]= function(_0xc18ax5,_0xc18ax6,_0xc18ax7){return ReportIntegration[_0x6f65[14]](Util[_0x6f65[13]](_0xc18ax5[_0x6f65[12]]))[_0x6f65[11]](function(_0xc18ax9){return _0xc18ax6[_0x6f65[10]](200)[_0x6f65[9]](_0xc18ax9)})[_0x6f65[8]](function(_0xc18ax8){return handleError(_0xc18ax6,_0xc18ax8)})};exports[_0x6f65[15]]= function(_0xc18ax5,_0xc18ax6){return ReportIntegrationHistory[_0x6f65[15]]()[_0x6f65[11]](function(_0xc18axa){return _0xc18ax6[_0x6f65[10]](200)[_0x6f65[9]](_0xc18axa)})[_0x6f65[8]](function(_0xc18ax8){return handleError(_0xc18ax6,_0xc18ax8)})};exports[_0x6f65[16]]= function(_0xc18ax5,_0xc18ax6){return ReportIntegration[_0x6f65[16]](_0xc18ax5[_0x6f65[17]])[_0x6f65[11]](function(_0xc18axb){return _0xc18ax6[_0x6f65[10]](201)[_0x6f65[9]](_0xc18axb)})[_0x6f65[8]](function(_0xc18ax8){return handleError(_0xc18ax6,_0xc18ax8)})};function handleError(_0xc18ax6,_0xc18ax8){return _0xc18ax6[_0x6f65[10]](500)[_0x6f65[9]](_0xc18ax8)}
\ No newline at end of file