@tiledesk/tiledesk-server 2.2.24 → 2.2.26

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,9 +1,19 @@
1
-
2
- # 2.2.24
1
+ # untagged
2
+ - Operator.select returns context object that contains the temp request..TEST IT
3
+ - Added Serbian language to the widget
4
+ - Added tag field to the project_user
5
+ - Removed default BCC from email
6
+ - BugFix: Avoid cluster concurrent jobs in multiple nodes
7
+
8
+ # 2.2.25
9
+ - New label prechat form
10
+ - Updated mongodb-runner from 4.8.1 to 4.8.3 to fix ssh key error
11
+
12
+ # 2.2.24 -> PROD
3
13
  - webhook subscription can fetch temmates endpoint
4
14
  - Added hasBot and createdAt index to the request model
5
15
 
6
- # 2.2.23 -> PROD
16
+ # 2.2.23
7
17
  - Increased list answers limit from 1000 to 3000
8
18
 
9
19
  # 2.2.22
package/README.md CHANGED
@@ -18,6 +18,11 @@ You can find more info here: https://developer.tiledesk.com
18
18
  * [Nodejs](https://www.npmjs.com/) and npm installed. Suggested versions are NodeJS 12.20.2 and NPM 6.14.11
19
19
  * [MongoDb](https://www.mongodb.com) installed
20
20
 
21
+ # Run Tiledesk with Docker Compose
22
+
23
+ Do you want to install all the Tiledesk components on your server with just one click?
24
+ Use [Docker Compose Tiledesk installation guide](https://github.com/Tiledesk/tiledesk-deployment/blob/master/docker-compose/README.md)
25
+
21
26
  # Running Tiledesk Server
22
27
 
23
28
  ## Run locally with npm
package/config/email.js CHANGED
@@ -2,7 +2,7 @@ module.exports = {
2
2
  'host':'smtp.mailgun.org',
3
3
  'username': 'postmaster@mg.tiledesk.com',
4
4
  'from': 'Tiledesk Notification <postmaster@mg.tiledesk.com>',
5
- 'bcc': 'tiledesknotification@frontiere21.it',
5
+ 'bcc': '',
6
6
  'baseUrl':'https://console.tiledesk.com/v2/dashboard',
7
7
  'replyEnabled' : false,
8
8
  'inboundDomain': 'tickets.tiledesk.com'