Incorrect xml documentation for UserInteractionOptions.ErrorUrl #594
Answered
by
maartenba
ArturDorochowicz
asked this question in
IdentityServer
|
Xml documentation says the value defaults to /// <summary>
/// Gets or sets the URL of the error page. Local URLs must begin with a leading slash.
/// </summary>
/// <remarks>Defaults to <c>"/error"</c>.</remarks>
public string ErrorUrl { get; set; } = Constants.UIConstants.DefaultRoutePaths.Error.EnsureLeadingSlash(); public static class DefaultRoutePaths
{
public const string Login = "/account/login";
public const string Logout = "/account/logout";
public const string Consent = "/consent";
public const string Error = "/home/error";
public const string DeviceVerification = "/device";
}Also, the IdentityServer+Identity template has the error page in a wrong location. I think other templates are OK. See: https://github.com/DuendeSoftware/products/tree/main/identity-server/templates/src/IdentityServerAspNetIdentity/Pages/Error |
Answered by
maartenba
Jul 24, 2026
Replies: 1 comment
|
Thanks @ArturDorochowicz ! Flagged with the engineering team and should ideally go into our next releases. As for template, an update is ready and should ship in the coming time. |
0 replies
Answer selected by
ArturDorochowicz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @ArturDorochowicz ! Flagged with the engineering team and should ideally go into our next releases.
As for template, an update is ready and should ship in the coming time.