Built motion from commit d5e4af8c.|2.6.23
[motion2.git] / server / api / chatGroup / index.js
1 // *************************************************************************
2 // *                                                                       *
3 // * xCALLY Motion -  The Omnichannel Contact Center                       *
4 // * Copyright (c) Xenialab s.r.l. All Rights Reserved                     *
5 // *                                                                       *
6 // *************************************************************************
7 // *                                                                       *
8 // * Email: info@xcally.com                                                *
9 // * Website: https://www.xcally.com                                       *
10 // *                                                                       *
11 // *************************************************************************
12 // *                                                                       *
13 // * The SOFTWARE PRODUCT is protected by copyright laws and international *
14 // * copyright treaties, as well as other intellectual property laws and   *
15 // * treaties. The SOFTWARE PRODUCT is licensed, not sold.                         *
16 // *                                                                       *
17 // *************************************************************************
18 var _0x332a=['../../config/environment','./chatGroup.controller','isAuthenticated','index','get','show','/:id/unread','/:id/members','/:id/messages','getMessages','post','addMessage','put','update','/:id','delete','removeMembers','exports','util','express','Router','../../components/interaction/service'];(function(_0x4cb9e8,_0x43ac2c){var _0x398212=function(_0x3a0b8f){while(--_0x3a0b8f){_0x4cb9e8['push'](_0x4cb9e8['shift']());}};_0x398212(++_0x43ac2c);}(_0x332a,0x96));var _0xa332=function(_0x4ffa64,_0x271035){_0x4ffa64=_0x4ffa64-0x0;var _0x5da001=_0x332a[_0x4ffa64];return _0x5da001;};'use strict';var multer=require('multer');var util=require(_0xa332('0x0'));var path=require('path');var timeout=require('connect-timeout');var express=require(_0xa332('0x1'));var router=express[_0xa332('0x2')]();var fs_extra=require('fs-extra');var auth=require('../../components/auth/service');var interaction=require(_0xa332('0x3'));var config=require(_0xa332('0x4'));var controller=require(_0xa332('0x5'));router['get']('/',auth[_0xa332('0x6')](),controller[_0xa332('0x7')]);router[_0xa332('0x8')]('/describe',auth[_0xa332('0x6')](),controller['describe']);router[_0xa332('0x8')]('/:id',auth[_0xa332('0x6')](),controller[_0xa332('0x9')]);router[_0xa332('0x8')](_0xa332('0xa'),auth[_0xa332('0x6')](),controller['getUnread']);router[_0xa332('0x8')](_0xa332('0xb'),auth[_0xa332('0x6')](),controller['getMembers']);router[_0xa332('0x8')](_0xa332('0xc'),auth[_0xa332('0x6')](),controller[_0xa332('0xd')]);router[_0xa332('0xe')]('/',auth[_0xa332('0x6')](),controller['create']);router[_0xa332('0xe')]('/:id/members',auth[_0xa332('0x6')](),controller['addMembers']);router[_0xa332('0xe')]('/:id/messages',auth[_0xa332('0x6')](),controller[_0xa332('0xf')]);router[_0xa332('0x10')]('/:id',auth['isAuthenticated'](),controller[_0xa332('0x11')]);router['delete'](_0xa332('0x12'),auth[_0xa332('0x6')](),controller['destroy']);router[_0xa332('0x13')](_0xa332('0xb'),auth[_0xa332('0x6')](),controller[_0xa332('0x14')]);module[_0xa332('0x15')]=router;