Merge branch 'feature/gabriel2' into develop

This commit is contained in:
2025-10-16 16:46:33 +02:00
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();
}