Hello
Is it possible to use existing RoutePrefix or create extension to Commerce Scale Unit (Commerce Runtime) controller?
For example:
[RoutePrefix("Customers")]
public class XKOMCustomersController : IController
{
[HttpGet]
[Authorization(CommerceRoles.Application)]
public async Task<Customer> GetCustomerSimplified(IEndpointContext context, string accountNumber)
{
That works but it shows as warnings in healthcheck?testname=extensions
Controllers (Invalid route prefix)
Is there a better way to do this? Except not using RoutePrefix at all.