More cleanup
This commit is contained in:
parent
9311ba2b59
commit
672e56d0aa
|
|
@ -32,11 +32,12 @@ namespace AS1024.CommunityDocumentationPage.Controllers
|
|||
[NonAction]
|
||||
protected Uri BuildNetBoxURI()
|
||||
{
|
||||
var endUrl = new UriBuilder();
|
||||
|
||||
endUrl.Path = "/api/ipam/route-targets";
|
||||
endUrl.Host = Configuration["NetBoxHost"];
|
||||
endUrl.Scheme = "https";
|
||||
var endUrl = new UriBuilder
|
||||
{
|
||||
Path = "/api/ipam/route-targets",
|
||||
Host = Configuration["NetBoxHost"],
|
||||
Scheme = "https"
|
||||
};
|
||||
|
||||
return endUrl.Uri;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue