Merge branch 'nya' of git.femboy.science:Nyanlabs/Interlinked into nya

This commit is contained in:
Jackob_Punch 2023-10-01 07:39:35 +02:00
commit 43b20f03dd
2 changed files with 2 additions and 5 deletions

View file

@ -1,9 +1,4 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Security.Cryptography;
using System.Threading.Tasks;
using Interlinked.Shared.Model;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;

View file

@ -1,5 +1,6 @@
using Interlinked.Shared.Model;
using Interlinked.User;
using Interlinked.User.Services;
var builder = WebApplication.CreateBuilder(args);
@ -13,6 +14,7 @@ builder.Services.ConfigureApplicationCookie(options =>
// Cookie settings
options.Cookie.HttpOnly = true;
options.ExpireTimeSpan = TimeSpan.FromMinutes(30);
options.Cookie.Name = AuthManager.AUTH_COOKIE_NAME;
options.LoginPath = "/auth/login";
options.AccessDeniedPath = "/auth/account/uwuless";