Polianin Nikita
cd6f25deba
All logic related to token manipulation has been transferred to the AuthService. Also added TOTP 2FA and rethought the logic of logging into the application
8 lines
237 B
C#
8 lines
237 B
C#
namespace Mirea.Api.Security.Common;
|
|
|
|
public class CookieNames
|
|
{
|
|
public const string AccessToken = "access_token";
|
|
public const string RefreshToken = "refresh_token";
|
|
public const string FingerprintToken = "fingerprint";
|
|
} |