You are here

private function LdapSsoBootSubscriber::defaultPathsToExclude in LDAP Single Sign On 8

Exclude default excluded paths.

1 call to LdapSsoBootSubscriber::defaultPathsToExclude()
LdapSsoBootSubscriber::checkExcludePath in src/LdapSsoBootSubscriber.php
Check to exclude paths from SSO.

File

src/LdapSsoBootSubscriber.php, line 127

Class

LdapSsoBootSubscriber
Provides the automated single sign-on provider.

Namespace

Drupal\ldap_sso

Code

private function defaultPathsToExclude() {
  return [
    '/admin/config/search/clean-urls/check',
    '/user/login/sso',
    '/user/login',
    '/user/logout',
    '/user',
  ];
}