This commit is contained in:
femsci 2023-10-01 02:05:54 +02:00
parent eb8b32d5f2
commit e78c614763
Signed by: femsci
GPG key ID: 08F7911F0E650C67
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";