【7.2.1】放开getBackendDeployUrl权限

pull/28/head v7.2.1
fengshuonan 2022-03-03 15:53:01 +08:00
parent 911db0bac7
commit f53331af21
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ public class SysConfigController {
* @author fengshuonan
* @date 2021/7/8 16:36
*/
@GetResource(name = "获取后端服务部署的地址", path = "/sysConfig/getBackendDeployUrl")
@GetResource(name = "获取后端服务部署的地址", path = "/sysConfig/getBackendDeployUrl", requiredLogin = false, requiredPermission = false)
public ResponseData<String> getBackendDeployUrl() {
String serverDeployHost = sysConfigService.getServerDeployHost();
return new SuccessResponseData<>(serverDeployHost);