15 lines
352 B
C#
15 lines
352 B
C#
using System.Security.Claims;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace CodeLiturgy.Data.Auth.Context.Users;
|
|
|
|
public static class AuthConsts
|
|
{
|
|
/// <summary>
|
|
/// Helper object to return a negative callback
|
|
/// </summary>
|
|
public static (ClaimsIdentity, bool) NegativeToken => (null, false);
|
|
|
|
|
|
} |