fixed swagger urls
This commit is contained in:
parent
2db58b9e04
commit
5aa2f013d4
|
@ -11,7 +11,7 @@ public class HomeController extends AbstractDnetController {
|
||||||
"/doc", "/swagger"
|
"/doc", "/swagger"
|
||||||
})
|
})
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,6 @@ public class ApiDocController {
|
||||||
|
|
||||||
@GetMapping({ "/apidoc", "/api-doc", "/doc", "/swagger" })
|
@GetMapping({ "/apidoc", "/api-doc", "/doc", "/swagger" })
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
<a class="nav-link dropdown-toggle" href="javascript:void(0)" data-toggle="dropdown">Tools <span class="caret"></span></a>
|
<a class="nav-link dropdown-toggle" href="javascript:void(0)" data-toggle="dropdown">Tools <span class="caret"></span></a>
|
||||||
<div class="dropdown-menu dropdown-menu-right">
|
<div class="dropdown-menu dropdown-menu-right">
|
||||||
<a class="dropdown-item" href="{{t.url}}" target="_blank" ng-repeat="t in tools">{{t.name}}</a>
|
<a class="dropdown-item" href="{{t.url}}" target="_blank" ng-repeat="t in tools">{{t.name}}</a>
|
||||||
<a class="dropdown-item" href="/swagger-ui/" target="_blank">API documentation</a>
|
<a class="dropdown-item" href="/apidoc" target="_blank">API documentation</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -8,6 +8,6 @@ public class ApiDocController {
|
||||||
|
|
||||||
@GetMapping({ "/apidoc", "/api-doc", "/doc", "/swagger" })
|
@GetMapping({ "/apidoc", "/api-doc", "/doc", "/swagger" })
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>OpenAIRE Broker Public API</title>
|
<title>OpenAIRE Broker Public API</title>
|
||||||
<meta http-equiv="refresh" content="2; url = ./swagger" />
|
<meta http-equiv="refresh" content="2; url = ./apidoc" />
|
||||||
</head>
|
</head>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -11,6 +11,6 @@ public class SwaggerController {
|
||||||
"/apidoc", "/api-doc", "/doc", "/swagger"
|
"/apidoc", "/api-doc", "/doc", "/swagger"
|
||||||
}, method = RequestMethod.GET)
|
}, method = RequestMethod.GET)
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<h1>Metadata Store Manager</h1>
|
<h1>Metadata Store Manager</h1>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
<a href="./swagger-ui/" target="_blank">API documentation</a>
|
<a href="./apidoc" target="_blank">API documentation</a>
|
||||||
<hr />
|
<hr />
|
||||||
<a href="javascript:void(0)" data-toggle="modal" data-target="#newMdstoreModal">create a new mdstore</a>
|
<a href="javascript:void(0)" data-toggle="modal" data-target="#newMdstoreModal">create a new mdstore</a>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
|
@ -81,10 +81,10 @@ public class HomeController extends AbstractDnetController {
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping({
|
@GetMapping({
|
||||||
"/doc", "/swagger"
|
"apidoc", "api-doc", "/doc", "/swagger"
|
||||||
})
|
})
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,14 +12,14 @@ public class HomeController extends AbstractDnetController {
|
||||||
"/doc", "/swagger"
|
"/doc", "/swagger"
|
||||||
})
|
})
|
||||||
public String apiDoc() {
|
public String apiDoc() {
|
||||||
return "redirect:swagger-ui/";
|
return "redirect:swagger-ui/index.html";
|
||||||
}
|
}
|
||||||
|
|
||||||
@GetMapping({
|
@GetMapping({
|
||||||
"/v1/ui"
|
"/v1/ui"
|
||||||
})
|
})
|
||||||
public String v1Doc() {
|
public String v1Doc() {
|
||||||
return "redirect:/swagger-ui/?urls.primaryName=Scholexplorer%20API%20V1.0";
|
return "redirect:/swagger-ui/index.html?urls.primaryName=Scholexplorer%20API%20V1.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ public class HomeController extends AbstractDnetController {
|
||||||
"/v2/ui"
|
"/v2/ui"
|
||||||
})
|
})
|
||||||
public String v2Doc() {
|
public String v2Doc() {
|
||||||
return "redirect:/swagger-ui/?urls.primaryName=Scholexplorer%20API%20V2.0";
|
return "redirect:/swagger-ui/index.html?urls.primaryName=Scholexplorer%20API%20V2.0";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue