Robert Marshall пре 3 година
родитељ
комит
6093a0f9a0
1 измењених фајлова са 0 додато и 3 уклоњено
  1. 0 3
      src/Website/Startup.cs

+ 0 - 3
src/Website/Startup.cs

@@ -20,12 +20,10 @@ namespace Website
 
 		public IConfiguration Configuration { get; }
 
-		// This method gets called by the runtime. Use this method to add services to the container.
 		public void ConfigureServices(IServiceCollection services)
 		{
 			services.Configure<CookiePolicyOptions>(options =>
 			{
-				// This lambda determines whether user consent for non-essential cookies is needed for a given request.
 				options.CheckConsentNeeded = context => true;
 				options.MinimumSameSitePolicy = SameSiteMode.None;
 			});
@@ -64,7 +62,6 @@ namespace Website
 				;
 		}
 
-		// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
 		public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
 		{
 			if (env.IsDevelopment())