Built motion from commit b5b971d.|0.0.97
[motion.git] / server / api / user_has_chat_room / user_has_chat_room.controller.js
index d747380..8402026 100644 (file)
@@ -1,96 +1 @@
-'use strict';
-
-var _ = require('lodash');
-var UserHasChatRoom = require('../../models').UserHasChatRoom;
-
-// Get list of user_has_chat_rooms
-exports.index = function(req, res) {
-  UserHasChatRoom
-  .findAll()
-  .then(function (user_has_chat_rooms) {
-    return res.status(200).send(user_has_chat_rooms);
-  })
-  .catch(function(err) {
-    return handleError(res, err);
-  });
-};
-
-// Get a single user_has_chat_room
-exports.show = function(req, res) {
-  UserHasChatRoom
-  .findById(req.params.id)
-  .then(function (user_has_chat_room) {
-    if(!user_has_chat_room) { return res.sendStatus(404); }
-    return res.send(user_has_chat_room);
-  })
-  .catch(function(err){
-    return handleError(res, err);
-  });
-};
-
-// Creates a new user_has_chat_room in the DB.
-exports.create = function(req, res) {
-
-  UserHasChatRoom
-    .create(req.body)
-    .then(function(user_has_chat_room) {
-      return res.status(201).send(user_has_chat_room);
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Updates an existing user_has_chat_room in the DB.
-exports.update = function(req, res) {
-
-  UserHasChatRoom
-    .findOne({
-      where: {
-        UserId: req.params.userId,
-        ChatRoomId: req.params.chatRoomId
-      },
-      limit: 1
-    })
-    .then(function (user_has_chat_room) {
-      if (!user_has_chat_room) {
-        return res.sendStatus(404);
-      }
-
-      user_has_chat_room
-        .updateAttributes(req.body)
-        .then(function () {
-          return res.status(200).send(user_has_chat_room);
-        })
-        .catch(function(err) {
-          return handleError(res, err);
-        });
-    })
-    .catch(function(err) {
-      return handleError(res, err);
-    });
-};
-
-// Deletes a user_has_chat_room from the DB.
-exports.destroy = function(req, res) {
-
-  UserHasChatRoom
-  .findById(req.params.id)
-  .then(function (user_has_chat_room) {
-    if(!user_has_chat_room) { return res.sendStatus(404); }
-    user_has_chat_room.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 _0x65a4=["\x75\x73\x65\x20\x73\x74\x72\x69\x63\x74","\x6C\x6F\x64\x61\x73\x68","\x55\x73\x65\x72\x48\x61\x73\x43\x68\x61\x74\x52\x6F\x6F\x6D","\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","\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","\x75\x70\x64\x61\x74\x65","\x75\x70\x64\x61\x74\x65\x41\x74\x74\x72\x69\x62\x75\x74\x65\x73","\x75\x73\x65\x72\x49\x64","\x63\x68\x61\x74\x52\x6F\x6F\x6D\x49\x64","\x66\x69\x6E\x64\x4F\x6E\x65","\x64\x65\x73\x74\x72\x6F\x79"];_0x65a4[0];var _=require(_0x65a4[1]);var UserHasChatRoom=require(_0x65a4[3])[_0x65a4[2]];exports[_0x65a4[4]]=function(_0x626ex3,_0x626ex4){UserHasChatRoom[_0x65a4[9]]()[_0x65a4[8]](function(_0x626ex6){return _0x626ex4[_0x65a4[7]](200)[_0x65a4[6]](_0x626ex6)})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})};exports[_0x65a4[10]]=function(_0x626ex3,_0x626ex4){UserHasChatRoom[_0x65a4[14]](_0x626ex3[_0x65a4[13]][_0x65a4[12]])[_0x65a4[8]](function(_0x626ex7){if(!_0x626ex7){return _0x626ex4[_0x65a4[11]](404)};return _0x626ex4[_0x65a4[6]](_0x626ex7)})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})};exports[_0x65a4[15]]=function(_0x626ex3,_0x626ex4){UserHasChatRoom[_0x65a4[15]](_0x626ex3[_0x65a4[16]])[_0x65a4[8]](function(_0x626ex7){return _0x626ex4[_0x65a4[7]](201)[_0x65a4[6]](_0x626ex7)})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})};exports[_0x65a4[17]]=function(_0x626ex3,_0x626ex4){UserHasChatRoom[_0x65a4[21]]({where:{UserId:_0x626ex3[_0x65a4[13]][_0x65a4[19]],ChatRoomId:_0x626ex3[_0x65a4[13]][_0x65a4[20]]},limit:1})[_0x65a4[8]](function(_0x626ex7){if(!_0x626ex7){return _0x626ex4[_0x65a4[11]](404)};_0x626ex7[_0x65a4[18]](_0x626ex3[_0x65a4[16]])[_0x65a4[8]](function(){return _0x626ex4[_0x65a4[7]](200)[_0x65a4[6]](_0x626ex7)})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})};exports[_0x65a4[22]]=function(_0x626ex3,_0x626ex4){UserHasChatRoom[_0x65a4[14]](_0x626ex3[_0x65a4[13]][_0x65a4[12]])[_0x65a4[8]](function(_0x626ex7){if(!_0x626ex7){return _0x626ex4[_0x65a4[11]](404)};_0x626ex7[_0x65a4[22]]()[_0x65a4[8]](function(){return _0x626ex4[_0x65a4[11]](204)})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})})[_0x65a4[5]](function(_0x626ex5){return handleError(_0x626ex4,_0x626ex5)})};function handleError(_0x626ex4,_0x626ex5){return _0x626ex4[_0x65a4[7]](500)[_0x65a4[6]](_0x626ex5)}
\ No newline at end of file