diff --git a/Controllers/HomeController.cs b/Controllers/HomeController.cs index 3f14ead..8470468 100644 --- a/Controllers/HomeController.cs +++ b/Controllers/HomeController.cs @@ -157,6 +157,9 @@ namespace QRRapidoApp.Controllers [Route("en/url")] public async Task UrlType() => await Index("url"); + [Route("privacy")] + [Route("es/privacy")] + [Route("en/privacy")] public IActionResult Privacy() { var userId = User?.FindFirst(ClaimTypes.NameIdentifier)?.Value; @@ -173,6 +176,9 @@ namespace QRRapidoApp.Controllers return View(); } + [Route("terms")] + [Route("es/terms")] + [Route("en/terms")] public IActionResult Terms() { var userId = User?.FindFirst(ClaimTypes.NameIdentifier)?.Value; diff --git a/Views/Shared/_Layout.cshtml b/Views/Shared/_Layout.cshtml index 3018b68..303dc8e 100644 --- a/Views/Shared/_Layout.cshtml +++ b/Views/Shared/_Layout.cshtml @@ -452,9 +452,9 @@
@Localizer["UsefulLinks"]