Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jondjones/ec1bea2630bf741502db618537fda594 to your computer and use it in GitHub Desktop.
Save jondjones/ec1bea2630bf741502db618537fda594 to your computer and use it in GitHub Desktop.
Umbraco Management API Explained By An Idiot - 2
[VersionedApiBackOfficeRoute("customAPI")]
[ApiExplorerSettings(GroupName = "Custom Group")]
public class MyItemApiController : ManagementApiControllerBase
{
public MyItemApiController()
{
throw new NotImplementedException();
}
[HttpGet]
public IActionResult MyEndPoint() => Ok();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment