From e2337ba8fea84138c9502a4e62cdd6ba0ce605b1 Mon Sep 17 00:00:00 2001 From: Eduardo Lopes <155753879+eduardolopesx03@users.noreply.github.com> Date: Thu, 22 Jan 2026 15:59:26 -0300 Subject: [PATCH] Add non-api notification routes --- Controllers/NotificationsController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Controllers/NotificationsController.cs b/Controllers/NotificationsController.cs index b9e2e9c..bee46b7 100644 --- a/Controllers/NotificationsController.cs +++ b/Controllers/NotificationsController.cs @@ -21,6 +21,7 @@ public class NotificationsController : ControllerBase } [HttpGet] + [HttpGet("/notifications")] public async Task>> GetNotifications() { var (userId, userName) = GetUserContext(); @@ -60,6 +61,7 @@ public class NotificationsController : ControllerBase } [HttpPatch("{id:guid}/read")] + [HttpPatch("/notifications/{id:guid}/read")] public async Task MarkAsRead(Guid id) { var (userId, userName) = GetUserContext();