Jelle de Jong
unread,Oct 7, 2022, 6:45:58 AM10/7/22Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to keyclo...@googlegroups.com
Hello everybody,
I want to add andOTP and 1Password to the list of TOTP supported
applications, I saw there is some logic behind this list as changing the
timeout seconds will remove google authenticator for example.
I am now using the bellow hack but there might be a better way?
/opt/keycloak/keycloak-19.0.2/themes/base/login/login-config-totp.ftl
<#list totp.policy.supportedApplications as app>
<li>${app}</li>
</#list>
- name: adding andOTP string to
/opt/keycloak/keycloak-19.0.2/themes/base/login/login-config-totp.ftl
lineinfile:
destfile:
/opt/keycloak/keycloak-19.0.2/themes/base/login/login-config-totp.ftl
insertafter: '<ul id="kc-totp-supported-apps">'
line: " <li>andOTP</li>"
tags:
- keycloak
Kind regards,
Jelle de Jong