add the new oauth_complete path to the list of exemptions for the backoffice client (#16210)

This commit is contained in:
Jacob Overgaard
2024-05-02 13:09:20 +02:00
committed by GitHub
parent 8c8ebc0de1
commit f0dae526bf

View File

@@ -82,6 +82,6 @@ public sealed class BackOfficeAreaRoutes : IAreaRoutes
Controller = ControllerExtensions.GetControllerName<BackOfficeDefaultController>(),
Action = nameof(BackOfficeDefaultController.Index),
},
constraints: new { slug = @"^(section.*|upgrade|install|logout|error)$" });
constraints: new { slug = @"^(section.*|upgrade|install|oauth_complete|logout|error)$" });
}
}