diff options
| author | Jake Mannens <jake@asger.xyz> | 2026-05-24 00:02:03 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2026-06-11 01:16:00 +1000 |
| commit | a99c8f2be3d80aef7b3ee896215546e93b2fa403 (patch) | |
| tree | 36117cae914d420bdbbef2192a97daead1cf1f82 /Program.cs | |
| parent | d8870de423f7f674ff7187927d9eaeddb390d71c (diff) | |
Removed authentication/authorization
Diffstat (limited to 'Program.cs')
| -rw-r--r-- | Program.cs | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -1,6 +1,5 @@ using HyperBooru.Server.Components; using HyperBooru.Services; -using Microsoft.AspNetCore.Authentication.Cookies; using Microsoft.AspNetCore.DataProtection; using Microsoft.AspNetCore.Http.Json; using Microsoft.EntityFrameworkCore; @@ -13,9 +12,6 @@ public class Program { var builder = WebApplication.CreateBuilder(args); builder.Services.AddHttpContextAccessor(); - builder.Services.AddAuthentication( - CookieAuthenticationDefaults.AuthenticationScheme).AddCookie(); - builder.Services.AddAuthorization(); builder.Services.AddControllers().AddJsonOptions(o => { var converter = new JsonStringEnumConverter(); o.JsonSerializerOptions.Converters.Add(converter); @@ -50,8 +46,6 @@ public class Program { using var db = scope.ServiceProvider.GetRequiredService<HBContext>(); db.Database.Migrate(); - app.UseAuthentication(); - app.UseAuthorization(); if(app.Environment.IsDevelopment()) { app.UseWebAssemblyDebugging(); } else { |
