summaryrefslogtreecommitdiff
path: root/Program.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-06-14 07:45:14 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-06-14 07:45:14 +0300
commita5bf29c00b85358f5cc078422871aa6654866d0c (patch)
tree177c69399bb1b1ae680265f5c0dedbdbf8305587 /Program.cs
parentafdaabce8fb24f6fd46e387445c076f67a0c98ed (diff)
Add robots.txt generator
Diffstat (limited to 'Program.cs')
-rw-r--r--Program.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Program.cs b/Program.cs
index d3db670..60f5c15 100644
--- a/Program.cs
+++ b/Program.cs
@@ -2,7 +2,7 @@ using Microsoft.EntityFrameworkCore;
using MyDarling.Models;
using MyDarling.Services;
using Microsoft.AspNetCore.Identity;
-
+using MyDarling.Controllers;
var builder = WebApplication.CreateBuilder(args);
@@ -28,6 +28,7 @@ builder.Services.Configure<IdentityOptions>( opts =>
});
builder.Services.AddTransient<IImageResizer, ImageResizer>();
+builder.Services.AddScoped<IRobotsTxtGenerator, RobotsTxtGenerator>();
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();
@@ -38,6 +39,10 @@ app.MapControllers();
app.MapDefaultControllerRoute();
app.MapRazorPages();
+var robotsScope = app.Services.CreateScope();
+var robotsGenerator = robotsScope.ServiceProvider.GetService<IRobotsTxtGenerator>();
+app.MapGet("/robots.txt", () => robotsGenerator!.GetRobotsText());
+
app.UseAuthentication();
app.UseAuthorization();
IdentitySeedData.CreateAdminAccount(app.Services, app.Configuration);