From bfb22d99a09b7439b6ecfd5d5a2c0981c582b3f5 Mon Sep 17 00:00:00 2001 From: Russell Date: Fri, 20 Dec 2024 09:22:05 +1300 Subject: [PATCH] Fix for https://github.com/umbraco/UmbracoDocs/issues/6728 For Umbraco 14+ I think the following should be replaced Umbraco.Cms.Web.BackOffice.Controllers.ManagementApiControllerBase => Umbraco.Cms.Api.Management.Controllers.ManagementApiControllerBase --- 14/umbraco-cms/tutorials/creating-a-backoffice-api/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/14/umbraco-cms/tutorials/creating-a-backoffice-api/README.md b/14/umbraco-cms/tutorials/creating-a-backoffice-api/README.md index f18ae2e40ed..81d0ffb66ae 100644 --- a/14/umbraco-cms/tutorials/creating-a-backoffice-api/README.md +++ b/14/umbraco-cms/tutorials/creating-a-backoffice-api/README.md @@ -10,7 +10,7 @@ The Umbraco Backoffice API is also known as the Management API. Thus, a Backoffi ## Creating the class -To create a custom API, you need to create a class that inherits from `Umbraco.Cms.Web.BackOffice.Controllers.ManagementApiControllerBase`. +To create a custom API, you need to create a class that inherits from `Umbraco.Cms.Api.Management.Controllers.ManagementApiControllerBase`. The `ManagementApiControllerBase` serves as the foundation for your custom API class. It provides essential functionalities and utilities required for managing APIs within the Umbraco backoffice environment.