/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/ProjectTemplates/Shared/PageUrls.cs
17 строк
823 B
Anthony Tossell
Changed docs.microsoft.com links to learn.microsoft.com Issue: #44175 (#46206)
24 янв 2023, 05:07
Не верифицирован
24 янв 2023, 05:07
c37ee91
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Templates.Test.Helpers; public static class PageUrls { public const string HomeUrl = "/"; public const string PrivacyUrl = "/Privacy"; public const string PrivacyFullUrl = "/Home/Privacy"; public const string DocsUrl = "https://learn.microsoft.com/aspnet/core"; public const string LoginUrl = "/Identity/Account/Login"; public const string RegisterUrl = "/Identity/Account/Register"; public const string ForgotPassword = "/Identity/Account/ForgotPassword"; public const string ResendEmailConfirmation = "/Identity/Account/ResendEmailConfirmation"; public const string ExternalArticle = "https://go.microsoft.com/fwlink/?LinkID=532715"; }