Built motion from commit b322525.|0.0.112
[motion.git] / server / api / user_has_chat_room / user_has_chat_room.controller.js
index d747380..4faf58a 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 _0x3431=["\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"];_0x3431[0];var _=require(_0x3431[1]);var UserHasChatRoom=require(_0x3431[3])[_0x3431[2]];exports[_0x3431[4]]=function(_0xc46ex3,_0xc46ex4){UserHasChatRoom[_0x3431[9]]()[_0x3431[8]](function(_0xc46ex6){return _0xc46ex4[_0x3431[7]](200)[_0x3431[6]](_0xc46ex6)})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})};exports[_0x3431[10]]=function(_0xc46ex3,_0xc46ex4){UserHasChatRoom[_0x3431[14]](_0xc46ex3[_0x3431[13]][_0x3431[12]])[_0x3431[8]](function(_0xc46ex7){if(!_0xc46ex7){return _0xc46ex4[_0x3431[11]](404)};return _0xc46ex4[_0x3431[6]](_0xc46ex7)})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})};exports[_0x3431[15]]=function(_0xc46ex3,_0xc46ex4){UserHasChatRoom[_0x3431[15]](_0xc46ex3[_0x3431[16]])[_0x3431[8]](function(_0xc46ex7){return _0xc46ex4[_0x3431[7]](201)[_0x3431[6]](_0xc46ex7)})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})};exports[_0x3431[17]]=function(_0xc46ex3,_0xc46ex4){UserHasChatRoom[_0x3431[21]]({where:{UserId:_0xc46ex3[_0x3431[13]][_0x3431[19]],ChatRoomId:_0xc46ex3[_0x3431[13]][_0x3431[20]]},limit:1})[_0x3431[8]](function(_0xc46ex7){if(!_0xc46ex7){return _0xc46ex4[_0x3431[11]](404)};_0xc46ex7[_0x3431[18]](_0xc46ex3[_0x3431[16]])[_0x3431[8]](function(){return _0xc46ex4[_0x3431[7]](200)[_0x3431[6]](_0xc46ex7)})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})};exports[_0x3431[22]]=function(_0xc46ex3,_0xc46ex4){UserHasChatRoom[_0x3431[14]](_0xc46ex3[_0x3431[13]][_0x3431[12]])[_0x3431[8]](function(_0xc46ex7){if(!_0xc46ex7){return _0xc46ex4[_0x3431[11]](404)};_0xc46ex7[_0x3431[22]]()[_0x3431[8]](function(){return _0xc46ex4[_0x3431[11]](204)})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})})[_0x3431[5]](function(_0xc46ex5){return handleError(_0xc46ex4,_0xc46ex5)})};function handleError(_0xc46ex4,_0xc46ex5){return _0xc46ex4[_0x3431[7]](500)[_0x3431[6]](_0xc46ex5)}
\ No newline at end of file