Удалил личный кабинет, его нет в ТЗ

This commit is contained in:
Никита Потапов 2024-04-30 22:11:00 +04:00
parent f02cd81dbb
commit b2f671edbe
3 changed files with 0 additions and 9 deletions

View File

@ -90,11 +90,6 @@ namespace PolyclinicWebAppImplementer.Controllers
return View(); return View();
} }
public IActionResult MyPage()
{
return View();
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error() public IActionResult Error()
{ {

View File

@ -11,7 +11,6 @@
public static (string Url, string Title) Course = ("Course", "Курс"); public static (string Url, string Title) Course = ("Course", "Курс");
public static (string Url, string Title) Login = ("Login", "Вход"); public static (string Url, string Title) Login = ("Login", "Вход");
public static (string Url, string Title) Register = ("Register", "Регистрация"); public static (string Url, string Title) Register = ("Register", "Регистрация");
public static (string Url, string Title) MyPage = ("MyPage", "Личный кабинет");
public static (string Url, string Title) Privacy = ("Privacy", "Политика приватности"); public static (string Url, string Title) Privacy = ("Privacy", "Политика приватности");
public static List<(string Url, string Title)> MenuItemsOrder = new List<(string Url, string Title)> public static List<(string Url, string Title)> MenuItemsOrder = new List<(string Url, string Title)>

View File

@ -1,3 +0,0 @@
@{
ViewBag.SelectedSiteMenuItem = SiteMenuItems.MyPage;
}