samlauth.routing.yml in SAML Authentication 8.2
Same filename and directory in other branches
3 string references to YAML keys in samlauth.routing.yml
- AccessDeniedSubscriber::onException in src/
EventSubscriber/ AccessDeniedSubscriber.php - Redirects users when access is denied.
- LoginLogoutMenuLink::getRouteName in src/
Plugin/ Menu/ LoginLogoutMenuLink.php - Returns the route name, if available.
- SamlauthConfigureForm::buildForm in src/
Form/ SamlauthConfigureForm.php - Form constructor.
File
samlauth.routing.ymlView source
- samlauth.saml_controller_login:
- path: '/saml/login'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::login'
- _title: 'SAML Login'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
- samlauth.saml_controller_logout:
- path: '/saml/logout'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::logout'
- _title: 'SAML Logout'
- requirements:
- _role: 'authenticated'
- options:
- no_cache: TRUE
- samlauth.saml_controller_metadata:
- path: '/saml/metadata'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::metadata'
- _title: 'SAML Metadata'
- requirements:
- _permission: 'view sp metadata'
- samlauth.saml_controller_acs:
- path: '/saml/acs'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::acs'
- _title: 'SAML ACS'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
- samlauth.saml_controller_sls:
- path: '/saml/sls'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::sls'
- _title: 'SAML SLS'
- requirements:
- _role: 'authenticated'
- options:
- no_cache: TRUE
- samlauth.saml_controller_changepw:
- path: '/saml/changepw'
- defaults:
- _controller: '\Drupal\samlauth\Controller\SamlController::changepw'
- _title: 'SAML Change Password'
- requirements:
- _role: 'authenticated'
- options:
- no_cache: TRUE
- samlauth.samlauth_configure_form:
- path: '/admin/config/people/saml'
- defaults:
- _form: '\Drupal\samlauth\Form\SamlauthConfigureForm'
- _title: 'SAML Authentication'
- requirements:
- _permission: 'configure saml'
-