Newer
Older
eShopOnWeb-VerticalFeatureSlices / src / ApplicationCore / Constants / AuthorizationConstants.cs
@Derek Comartin Derek Comartin on 27 Jul 2021 461 bytes Init
namespace Microsoft.eShopWeb.ApplicationCore.Constants
{
    public class AuthorizationConstants
    {
        public const string AUTH_KEY = "AuthKeyOfDoomThatMustBeAMinimumNumberOfBytes";

        // TODO: Don't use this in production
        public const string DEFAULT_PASSWORD = "Pass@word1";

        // TODO: Change this to an environment variable
        public const string JWT_SECRET_KEY = "SecretKeyOfDoomThatMustBeAMinimumNumberOfBytes";
    }
}