This commit is contained in:
2025-10-16 16:42:45 +02:00
parent 2bcca6f856
commit a014c6c9f7
5 changed files with 39 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ public class DeleteMaterialEndpoint(PyroFetesDbContext pyrofetesdbcontext) : End
{
public override void Configure()
{
Delete("Api/materials/{@id}", x => new { x.Id });
Delete("/materials/{@id}", x => new { x.Id });
AllowAnonymous();
}