@tiledesk/tiledesk-server 2.2.24 → 2.2.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -3
- package/README.md +5 -0
- package/config/email.js +1 -1
- package/config/labels/widget.json +781 -611
- package/models/project_user.js +2 -0
- package/package.json +2 -2
- package/pubmodules/scheduler/tasks/closeBotUnresponsiveRequestTask.js +12 -3
- package/routes/faq_kb.js +2 -3
- package/routes/project_user.js +9 -2
- package/routes/widget.js +1 -1
- package/services/departmentService.js +5 -4
- package/services/emailService.js +2 -2
- package/services/faqService.js +62 -29
- package/config/labels/widget copy.json +0 -624
- package/services/faqBotSupport copy.js_consplit +0 -453
package/CHANGELOG.md
CHANGED
@@ -1,9 +1,19 @@
|
|
1
|
-
|
2
|
-
|
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
|
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': '
|
5
|
+
'bcc': '',
|
6
6
|
'baseUrl':'https://console.tiledesk.com/v2/dashboard',
|
7
7
|
'replyEnabled' : false,
|
8
8
|
'inboundDomain': 'tickets.tiledesk.com'
|