You are here

samlauth.routing.yml in SAML Authentication 8.3

File

samlauth.routing.yml
View source
  1. samlauth.saml_controller_login:
  2. path: '/saml/login'
  3. defaults:
  4. _controller: '\Drupal\samlauth\Controller\SamlController::login'
  5. _title: 'SAML login'
  6. requirements:
  7. _user_is_logged_in: 'FALSE'
  8. options:
  9. _maintenance_access: TRUE
  10. no_cache: TRUE
  11. default_url_options:
  12. path_processing: FALSE
  13. samlauth.saml_controller_logout:
  14. path: '/saml/logout'
  15. defaults:
  16. _controller: '\Drupal\samlauth\Controller\SamlController::logout'
  17. _title: 'SAML logout'
  18. requirements:
  19. _access: 'TRUE'
  20. options:
  21. _maintenance_access: TRUE
  22. no_cache: TRUE
  23. default_url_options:
  24. path_processing: FALSE
  25. samlauth.saml_controller_metadata:
  26. path: '/saml/metadata'
  27. defaults:
  28. _controller: '\Drupal\samlauth\Controller\SamlController::metadata'
  29. _title: 'SAML metadata'
  30. requirements:
  31. _permission: 'view sp metadata'
  32. options:
  33. default_url_options:
  34. path_processing: FALSE
  35. samlauth.saml_controller_acs:
  36. path: '/saml/acs'
  37. defaults:
  38. _controller: '\Drupal\samlauth\Controller\SamlController::acs'
  39. _title: 'SAML ACS'
  40. requirements:
  41. _access: 'TRUE'
  42. options:
  43. _maintenance_access: TRUE
  44. no_cache: TRUE
  45. default_url_options:
  46. path_processing: FALSE
  47. samlauth.saml_controller_sls:
  48. path: '/saml/sls'
  49. defaults:
  50. _controller: '\Drupal\samlauth\Controller\SamlController::sls'
  51. _title: 'SAML SLS'
  52. requirements:
  53. _access: 'TRUE'
  54. options:
  55. _maintenance_access: TRUE
  56. no_cache: TRUE
  57. default_url_options:
  58. path_processing: FALSE
  59. samlauth.saml_controller_changepw:
  60. path: '/saml/changepw'
  61. defaults:
  62. _controller: '\Drupal\samlauth\Controller\SamlController::changepw'
  63. _title: 'SAML change password'
  64. requirements:
  65. _user_is_logged_in: 'TRUE'
  66. options:
  67. default_url_options:
  68. path_processing: FALSE
  69. samlauth.samlauth_configure_form:
  70. path: '/admin/config/people/saml'
  71. defaults:
  72. _form: '\Drupal\samlauth\Form\SamlauthConfigureForm'
  73. _title: 'SAML authentication'
  74. requirements:
  75. _permission: 'configure saml'
  76. samlauth.authmap_delete_form:
  77. path: '/admin/config/people/saml/authmap/{uid}/delete'
  78. defaults:
  79. _form: '\Drupal\samlauth\Form\SamlauthAuthmapDeleteForm'
  80. _title: 'Delete authmap entry'
  81. requirements:
  82. _permission: 'configure saml'