2022-09-26 04:40:18 +03:00
|
|
|
using System.Security.Claims;
|
|
|
|
using System.Threading.Tasks;
|
2022-11-13 14:27:48 +03:00
|
|
|
using Microsoft.AspNetCore.Identity;
|
2022-09-26 04:40:18 +03:00
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Auth.Context.Users;
|
2022-09-26 04:40:18 +03:00
|
|
|
|
|
|
|
public static class AuthConsts
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Helper object to return a negative callback
|
|
|
|
/// </summary>
|
2022-11-13 14:27:48 +03:00
|
|
|
public static (ClaimsIdentity, bool) NegativeToken => (null, false);
|
2022-09-26 04:40:18 +03:00
|
|
|
|
|
|
|
|
|
|
|
}
|