李昊 пре 4 година
родитељ
комит
992ea40603
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      gx_api/GxPress/Api/GxPress.Api/Startup.cs

+ 2 - 2
gx_api/GxPress/Api/GxPress.Api/Startup.cs

@@ -29,7 +29,7 @@ namespace GxPress.Api
         // For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
         public void ConfigureServices(IServiceCollection services)
         {
-             services.AddSingleton<IHttpContextAccessor,HttpContextAccessor>();
+            services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
             services.AddSingleton<ISchedulerFactory, StdSchedulerFactory>();
             services.AddControllers().AddNewtonsoftJson(options =>
             {
@@ -117,7 +117,7 @@ namespace GxPress.Api
             app.UseRouting();
             app.UseJwtAuthorization();
             app.UseStaticFiles();
-            app.UseCors("AllowAny");
+            app.UseCors("cors");
             app.UseSwashbuckle();
 
             app.UseEndpoints(endpoints =>