From c9ba8160b3a3298fec9cd09c9b874210ee0fffe9 Mon Sep 17 00:00:00 2001 From: lcaohoanq Date: Sun, 26 Oct 2025 08:16:00 +0700 Subject: [PATCH] feat: add update swagger server --- TaskGenix.Server/DI/DependencyInjection.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TaskGenix.Server/DI/DependencyInjection.cs b/TaskGenix.Server/DI/DependencyInjection.cs index 2a76bb0..301df07 100644 --- a/TaskGenix.Server/DI/DependencyInjection.cs +++ b/TaskGenix.Server/DI/DependencyInjection.cs @@ -147,6 +147,12 @@ public static IServiceCollection AddSwagger(this IServiceCollection services) Url = "https://tgx.lch.id.vn", Description = "Production Real" }); + + c.AddServer(new OpenApiServer + { + Url = "https://api.taskgenix.website", + Description = "Production Real 2" + }); }); return services; }