Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

SAML Metadata  → <TermWeb URL>/login-saml/metadata

Enabling external login buttons

...

Warning

For earlier releases before 4.0.5-9

To enable SAML login by default administrator must update distributive contents by replacing string '@useSAMLLoginAsDefault@' with boolean value true.

Tip

After release 4.0.5-9

To configure buttons for external logins, like SAML or OIDC, you need to find string "@externalLoginURLs@" and replace with values like this:

Code Block
languagejson
[
  {
    label: 'Login with Microsoft',
    url: '/login-oidc?origin=https://login.microsoftonline.com/<tenant-id>',
    autologin: false,
    icon: 'fab fa-microsoft',
    styleStr: 'color:#2f55b9; font-weight:500;'
  },
  {
    label: '① Login with SAML',
    url: '/login-saml/ssologin',
    styleStr: 'color:#414b54; font-weight:500;'
  }
]