2020-06-15 23:15:59 +00:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
|
|
|
using PluralKit.Core;
|
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
namespace PluralKit.API;
|
|
|
|
|
|
|
|
public class PrivacyRequirement<T>: IAuthorizationRequirement
|
2020-06-15 23:15:59 +00:00
|
|
|
{
|
2021-11-27 02:10:56 +00:00
|
|
|
public readonly Func<T, PrivacyLevel> Mapper;
|
2021-08-27 15:03:47 +00:00
|
|
|
|
2021-11-27 02:10:56 +00:00
|
|
|
public PrivacyRequirement(Func<T, PrivacyLevel> mapper)
|
|
|
|
{
|
|
|
|
Mapper = mapper;
|
2020-06-15 23:15:59 +00:00
|
|
|
}
|
|
|
|
}
|