refactor(EnvelopeTypeController): aktualisiert zu ignoriert von open-api

This commit is contained in:
Developer 02
2025-04-10 16:09:45 +02:00
parent ec76014ce7
commit 9f186afdff

View File

@@ -1,12 +1,10 @@
using DigitalData.Core.DTO;
using EnvelopeGenerator.Application.Contracts.Services;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using System.Net.Mail;
using System.Security.Cryptography.Xml;
namespace EnvelopeGenerator.GeneratorAPI.Controllers
{
namespace EnvelopeGenerator.GeneratorAPI.Controllers;
[ApiExplorerSettings(IgnoreApi = true)]
[Route("api/[controller]")]
[ApiController]
public class EnvelopeTypeController : ControllerBase
@@ -40,4 +38,3 @@ namespace EnvelopeGenerator.GeneratorAPI.Controllers
}
}
}
}