From a7cfeaa1ba89d4c6ba39998ae62190e9a9ee7857 Mon Sep 17 00:00:00 2001 From: Kjetil Haugland Date: Thu, 5 Dec 2024 12:49:14 +0100 Subject: [PATCH] Add route to handle duplicate signin for users --- .../Controllers/BundleController.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clientBackend/src/Equinor.ProjectExecutionPortal.ClientBackend/Controllers/BundleController.cs b/clientBackend/src/Equinor.ProjectExecutionPortal.ClientBackend/Controllers/BundleController.cs index 126156556..61e0c1be5 100644 --- a/clientBackend/src/Equinor.ProjectExecutionPortal.ClientBackend/Controllers/BundleController.cs +++ b/clientBackend/src/Equinor.ProjectExecutionPortal.ClientBackend/Controllers/BundleController.cs @@ -6,6 +6,8 @@ namespace Equinor.ProjectExecutionPortal.ClientBackend.Controllers public class BundleController : Controller { [Authorize] + [HttpGet("/")] + [HttpGet("/authentication/{*anything}")] [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] public Task Index() {