feat(项目管理功能完善): 完善开通组织工作台相关逻辑

1. 开通企业工作台后返回工作台访问地址
2. 检查是否开通企业工作台接口调整为:通过组织标识获取工作台访问地址
This commit is contained in:
OTTO 2024-02-01 15:41:26 +08:00
parent e61af0ea06
commit 4f84f665ff
1 changed files with 2 additions and 2 deletions

View File

@ -158,8 +158,8 @@ public class PmsEnterpriseController extends BaseController
*/
@GetMapping("/{gitlinkOrgId}/workbenchUrl")
@ApiOperation(value = "通过组织标识获取工作台访问地址未开通返回null")
public GenericsAjaxResult<Object> getWorkbenchUrl(
public GenericsAjaxResult<String> getWorkbenchUrl(
@ApiParam(name = "gitlinkOrgId", value = "gitlink组织Id") @PathVariable Long gitlinkOrgId) {
return genericsSuccess((Object) pmsEnterpriseService.getWorkbenchUrl(gitlinkOrgId));
return genericsSuccess(pmsEnterpriseService.getWorkbenchUrl(gitlinkOrgId));
}
}