From 0e3be5fce487b7bcefb4367173baae00c4c45b60 Mon Sep 17 00:00:00 2001 From: Ricardo Carneiro Date: Fri, 3 Apr 2026 17:20:01 -0300 Subject: [PATCH] fix: termos e politica --- Controllers/HomeController.cs | 6 ++++++ Views/Shared/_Layout.cshtml | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) 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 @@