Browse Source

数据集审批bug修复

dev-zch
ddmte32 10 months ago
parent
commit
518149c67f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/GitServiceImpl.java

+ 1
- 1
ruoyi-modules/management-platform/src/main/java/com/ruoyi/platform/service/impl/GitServiceImpl.java View File

@@ -185,7 +185,7 @@ public class GitServiceImpl implements GitService {

@Override
public void updateProjectDetail(Map<String,Object> body,String owner, String identifier,String token) throws Exception {
String userReq = httpUtils.sendPatchWithToken(gitendpoint + "/api/" + owner + "/" + identifier + "/practice.json", null, token, JsonUtils.mapToJson(body));
String userReq = httpUtils.sendPatchWithToken(gitendpoint + "/api/" + owner + "/" + identifier + ".json", null, token, JsonUtils.mapToJson(body));
if (StringUtils.isEmpty(userReq)) {
throw new RuntimeException();
}


Loading…
Cancel
Save