// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, HotChocolateSeeder seeder) { app.UseCors("CorsPolicy"); seeder.Seed(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseMiddleware <ErrorHandlingMiddleware>(); app.UseAuthentication(); app.UseHttpsRedirection(); app.UseSwagger(); //endpointy w swaggerze app.UseSwaggerUI(c => { c.SwaggerEndpoint("/swagger/v1/swagger.json", "HotChocolate API"); }); app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); }
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IWebHostEnvironment env, HotChocolateSeeder seeder) { seeder.Seed(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); } app.UseMiddleware <ErrorHandlingMiddleware>(); app.UseAuthentication(); app.UseHttpsRedirection(); app.UseRouting(); app.UseAuthorization(); app.UseEndpoints(endpoints => { endpoints.MapControllers(); }); }