feat(项目聚合管理功能开发): 实现项目聚合功能
新增GitLink请求路径定义类 关联Issue:https://www.gitlink.org.cn/Gitlink/forgeplus/issues/2894
This commit is contained in:
parent
85123edd05
commit
dd2fa2da2d
|
|
@ -121,6 +121,12 @@
|
|||
<artifactId>hanlp</artifactId>
|
||||
<version>portable-1.8.4</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.ruoyi</groupId>
|
||||
<artifactId>ruoyi-common-httpClient</artifactId>
|
||||
<version>3.6.2</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,17 @@
|
|||
package com.ruoyi.zone.utils;
|
||||
|
||||
import com.ruoyi.common.httpClient.domain.GitLinkRequestUrl;
|
||||
|
||||
|
||||
/**
|
||||
* @author xjy
|
||||
*/
|
||||
public class ZoneGitLinkRequestUrl extends GitLinkRequestUrl {
|
||||
|
||||
/**
|
||||
* 创建项目
|
||||
*/
|
||||
public static GitLinkRequestUrl PROJECT_LANGUAGES() {
|
||||
return getOpenGitLinkRequestUrl("/api/project_languages.json");
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue