mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-20 21:58:59 -04:00
Closes #45381 Closes #45756 Signed-off-by: Ruchika <ruchika.jha1@ibm.com> Signed-off-by: Alexander Schwartz <alexander.schwartz@ibm.com> Co-authored-by: Alexander Schwartz <alexander.schwartz@ibm.com>
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
<#macro table features>
|
|
[cols="30%,70%"]
|
|
|===
|
|
| Feature | Description
|
|
|
|
<#list features as feature>
|
|
| [.features-name]#`${feature.versionedKey}`# | [.features-description]#${feature.description}#
|
|
</#list>
|
|
|===
|
|
</#macro>
|
|
|
|
<#macro techpreview feature additionalCommunityText="">
|
|
<#assign profileFeature = ctx.features.getFeature(feature)>
|
|
|
|
[NOTE]
|
|
====
|
|
${profileFeature.description} is
|
|
ifeval::[{project_product}==true]
|
|
*Technology Preview*
|
|
endif::[]
|
|
ifeval::[{project_community}==true]
|
|
*Preview*
|
|
endif::[]
|
|
and is not fully supported. This feature is disabled by default.
|
|
|
|
ifeval::[{project_community}==true]
|
|
${additionalCommunityText!""}
|
|
endif::[]
|
|
|
|
To enable start the server with <#if profileFeature.type != "PREVIEW_DISABLED_BY_DEFAULT">`--features=preview` or </#if>`--features=${profileFeature.name}`
|
|
|
|
====
|
|
</#macro>
|
|
|
|
<#macro techpreviewdeprecated feature>
|
|
<#assign profileFeature = ctx.features.getFeature(feature)>
|
|
|
|
[WARNING]
|
|
====
|
|
${profileFeature.description} is
|
|
ifeval::[{project_product}==true]
|
|
*Technology Preview*
|
|
endif::[]
|
|
ifeval::[{project_community}==true]
|
|
*Preview*
|
|
endif::[]
|
|
and *Deprecated*. This feature is not fully supported, disabled by default, and will be removed in future versions.
|
|
|
|
To enable start the server with <#if profileFeature.type != "PREVIEW_DISABLED_BY_DEFAULT">`--features=preview` or </#if>`--features=${profileFeature.name}`
|
|
|
|
====
|
|
</#macro>
|