Merge pull request #1290 from dataease/pr@dev@refactor_method_name

refactor: 公共链接方法名称
This commit is contained in:
fit2cloud-chenyw 2021-11-26 14:33:27 +08:00 committed by GitHub
commit 44fd710419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,7 +45,7 @@ public class IndexController {
}
@GetMapping("/link/{index}")
public String xggznb(@PathVariable(value = "index", required = true) Long index) {
public String link(@PathVariable(value = "index", required = true) Long index) {
String url = panelLinkService.getUrlByIndex(index);
HttpServletResponse response = ServletUtils.response();
String param = url.substring(url.indexOf("?") + 1);