From 5fd2e7025244088453f8e819ccf3d43264635623 Mon Sep 17 00:00:00 2001 From: sanchezvem Date: Tue, 18 Nov 2025 08:58:15 +0100 Subject: [PATCH] added row in Program.cs --- .idea/.idea.ApiEfCoreLibrary/.idea/db-forest-config.xml | 6 ++++++ ApiEfCoreLibrary/Program.cs | 1 + 2 files changed, 7 insertions(+) create mode 100644 .idea/.idea.ApiEfCoreLibrary/.idea/db-forest-config.xml diff --git a/.idea/.idea.ApiEfCoreLibrary/.idea/db-forest-config.xml b/.idea/.idea.ApiEfCoreLibrary/.idea/db-forest-config.xml new file mode 100644 index 0000000..df7cea4 --- /dev/null +++ b/.idea/.idea.ApiEfCoreLibrary/.idea/db-forest-config.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/ApiEfCoreLibrary/Program.cs b/ApiEfCoreLibrary/Program.cs index e173b78..e8c5a1d 100644 --- a/ApiEfCoreLibrary/Program.cs +++ b/ApiEfCoreLibrary/Program.cs @@ -24,6 +24,7 @@ app.UseAuthentication() .UseAuthorization() .UseFastEndpoints(options => { + options.Endpoints.ShortNames = true; options.Endpoints.RoutePrefix = "API"; }) .UseSwaggerGen();