v14: Remove mentions of UmbracoApiController (#15863)

* Remove mentions of UmbracoApiController

* Remove last mentions of UmbracoApi controller
This commit is contained in:
Nikolaj Geisle
2024-03-19 14:42:08 +01:00
committed by GitHub
parent 08783c6065
commit 30e2dea57a
17 changed files with 3 additions and 626 deletions

View File

@@ -105,18 +105,6 @@ namespace Umbraco.Cms.Tests.Integration.TestServerTest
});
}
/// <summary>
/// Prepare a url before using <see cref="Client"/>.
/// This returns the url but also sets the HttpContext.request into to use this url.
/// </summary>
/// <returns>The string URL of the controller action.</returns>
protected string PrepareApiControllerUrl<T>(Expression<Func<T, object>> methodSelector)
where T : UmbracoApiController
{
var url = LinkGenerator.GetUmbracoApiService(methodSelector);
return PrepareUrl(url);
}
protected string GetManagementApiUrl<T>(Expression<Func<T, object>> methodSelector)
where T : ManagementApiControllerBase
{