* Moved Privacy, Home page to Razor Pages * Migrating Basket from RazorPages to Web. * Removed BasketController; refactored viewmodels * Moved BasketComponent into Pages/Shared Added auth rules to Startup for Pages Added notes to controllers about Pages usage. * Fixed broken my orders test Consolidated Functional Tests * Fixed logo link to home page Fixed Order Detail Total $ format
10 lines
245 B
C#
10 lines
245 B
C#
namespace Microsoft.eShopWeb.Web
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string BASKET_COOKIENAME = "eShop";
|
|
public const int ITEMS_PER_PAGE = 10;
|
|
public const string DEFAULT_USERNAME = "Guest";
|
|
}
|
|
}
|