Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion Swashbuckle.Core/Application/SwaggerUiConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,15 @@ public void CustomAsset(string path, Assembly resourceAssembly, string resourceN
if (path == "index") isTemplate = true;
_pathToAssetMap[path] = new EmbeddedAssetDescriptor(resourceAssembly, resourceName, isTemplate);
}

public void CustomTemplateParameter(string templateParameterName, string parameterValue)
{
var nameWithPercentParenthesesWrapper =
templateParameterName.StartsWith("%(")
? templateParameterName
: $"%({templateParameterName})";
_templateParams[nameWithPercentParenthesesWrapper] = parameterValue;
}

public void EnableDiscoveryUrlSelector()
{
Expand Down Expand Up @@ -170,4 +179,4 @@ public enum DocExpansion
List,
Full
}
}
}