mirror of
https://github.com/valentincanonical/eShopOnWeb-chisel-demo.git
synced 2026-05-21 07:42:50 +00:00
* 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
12 lines
192 B
C#
12 lines
192 B
C#
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
namespace Microsoft.eShopWeb.Web.Pages
|
|
{
|
|
public class PrivacyModel : PageModel
|
|
{
|
|
public void OnGet()
|
|
{
|
|
}
|
|
}
|
|
}
|