From f0dae526bfefb13cc8dc606b8049df6f451bf3b7 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Thu, 2 May 2024 13:09:20 +0200 Subject: [PATCH] add the new `oauth_complete` path to the list of exemptions for the backoffice client (#16210) --- src/Umbraco.Cms.Api.Management/Routing/BackOfficeAreaRoutes.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Cms.Api.Management/Routing/BackOfficeAreaRoutes.cs b/src/Umbraco.Cms.Api.Management/Routing/BackOfficeAreaRoutes.cs index e51da4246a..9cd0359742 100644 --- a/src/Umbraco.Cms.Api.Management/Routing/BackOfficeAreaRoutes.cs +++ b/src/Umbraco.Cms.Api.Management/Routing/BackOfficeAreaRoutes.cs @@ -82,6 +82,6 @@ public sealed class BackOfficeAreaRoutes : IAreaRoutes Controller = ControllerExtensions.GetControllerName(), Action = nameof(BackOfficeDefaultController.Index), }, - constraints: new { slug = @"^(section.*|upgrade|install|logout|error)$" }); + constraints: new { slug = @"^(section.*|upgrade|install|oauth_complete|logout|error)$" }); } }