yys před 1 týdnem
rodič
revize
16e9c92f96

+ 3 - 2
fs-company-app/src/main/java/com/fs/app/controller/FsUserCourseVideoController.java

@@ -554,8 +554,9 @@ public class FsUserCourseVideoController extends AppBaseController {
                                  @RequestParam(required = false) Long courseId,
                                  @RequestParam(required = false) Long projectId,
                                  @RequestParam(required = false) Long id) {
+        throw new RuntimeException("暂时不支持");
         // 读取配置判断是否启用飞书新跳转
-        Boolean enableFeishuNewLink = null;
+     /*   Boolean enableFeishuNewLink = null;
         try {
             String json = configService.selectConfigByKey("course.config");
             if (StringUtils.isNotBlank(json)) {
@@ -583,6 +584,6 @@ public class FsUserCourseVideoController extends AppBaseController {
         // 客户在微信打开,直接返回看课H5(不包飞书文档)
         String oldLink = feiShuService.getFeishuCourseH5Link(companyUserId, videoId, periodId);
         log.info("老链接{}", oldLink);
-        return R.ok().put("data", oldLink);
+        return R.ok().put("data", oldLink);*/
     }
 }