user list cleanup

This commit is contained in:
Paul Schneider
2021-06-03 16:24:33 +01:00
parent a09295968e
commit f3d3a7e575
5 changed files with 96 additions and 23 deletions

View File

@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using Yavsc.Models;
namespace Yavsc.Server.Settings
{
public class UserPolicies
{
public static readonly Dictionary<string, Func<ApplicationUser, bool>> Criterias =
new Dictionary<string, Func<ApplicationUser, bool>>
{
{ "allow-monthly", u => u.AllowMonthlyEmail },
{ "email-not-confirmed", u => !u.EmailConfirmed && u.DateCreated < DateTime.Now.AddDays(-7) },
{ "user-to-remove", u => !u.EmailConfirmed && u.DateCreated < DateTime.Now.AddDays(-14) }
};
}
}

View File

@ -5,16 +5,6 @@ using Yavsc.Models;
namespace Yavsc.Templates
{
public static class TemplateConstants
{
public static readonly Dictionary<string, Func<ApplicationUser, bool>> Criterias =
new Dictionary<string, Func<ApplicationUser, bool>>
{
{ "allow-monthly", u => u.AllowMonthlyEmail },
{ "email-not-confirmed", u => !u.EmailConfirmed && u.DateCreated < DateTime.Now.AddDays(-7) }
};
}
public abstract class UserOrientedTemplate: Template
{
public ApplicationUser User { get; set; }