This commit is contained in:
jack ning
2025-08-08 19:45:55 +08:00
parent 6929a892f2
commit 494485ddaf
3 changed files with 28 additions and 8 deletions

View File

@@ -1,13 +1,26 @@
/*
* @Author: jackning 270580156@qq.com
* @Date: 2025-08-08 17:41:39
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-08-08 19:44:35
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
* Business Source License 1.1: https://github.com/Bytedesk/bytedesk/blob/main/LICENSE
* contact: 270580156@qq.com
*
* Copyright (c) 2025 by bytedesk.com, All Rights Reserved.
*/
package com.bytedesk.call;
import org.springframework.boot.SpringApplication;
// import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class CallApplication {
public static void main(String[] args) {
SpringApplication.run(CallApplication.class, args);
}
// public static void main(String[] args) {
// SpringApplication.run(CallApplication.class, args);
// }
}

View File

@@ -2,7 +2,7 @@
* @Author: jackning 270580156@qq.com
* @Date: 2024-06-28 17:19:02
* @LastEditors: jackning 270580156@qq.com
* @LastEditTime: 2025-08-08 16:37:20
* @LastEditTime: 2025-08-08 19:35:22
* @Description: bytedesk.com https://github.com/Bytedesk/bytedesk
* Please be aware of the BSL license restrictions before installing Bytedesk IM
* selling, reselling, or hosting Bytedesk IM as a service is a breach of the terms and automatically terminates your rights under the license.
@@ -137,7 +137,7 @@ public class MessageUnreadRestService
//
MessageTypeEnum type = messageProtobuf.getType();
String threadUid = messageProtobuf.getThread().getUid();
String threadTopic = messageProtobuf.getThread().getTopic();
// String threadTopic = messageProtobuf.getThread().getTopic();
// 目前只记录文本、图片和文件类型的未读消息
if (!MessageTypeEnum.TEXT.equals(type) &&

View File

@@ -246,15 +246,16 @@
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-social</artifactId>
<artifactId>bytedesk-module-ticket</artifactId>
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-ticket</artifactId>
<artifactId>bytedesk-module-call</artifactId>
<version>${revision}</version>
</dependency>
@@ -270,6 +271,12 @@
<version>${revision}</version>
</dependency>
<dependency>
<groupId>com.bytedesk</groupId>
<artifactId>bytedesk-module-social</artifactId>
<version>${revision}</version>
</dependency>
<!-- kanban -->
<dependency>
<groupId>com.bytedesk</groupId>