social_auth_google.routing.yml in Social Auth Google 8.2
Same filename and directory in other branches
2 string references to YAML keys in social_auth_google.routing.yml
- social_auth_google_help in ./
social_auth_google.module - Implements hook_help().
- social_auth_google_install in ./
social_auth_google.install - Implements hook_install().
File
social_auth_google.routing.ymlView source
- social_auth_google.redirect_to_google:
- path: 'user/login/google'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::redirectToProvider'
- requirements:
- # Anonymous users can log in, but authenticated users can also associate a new provider.
- _access: 'TRUE'
- options:
- no_cache: TRUE
-
- social_auth_google.callback:
- path: 'user/login/google/callback'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::callback'
- requirements:
- # Anonymous users can log in, but authenticated users can also associate a new provider.
- _access: 'TRUE'
- options:
- no_cache: TRUE
-
- social_auth_google.settings_form:
- path: 'admin/config/social-api/social-auth/google'
- defaults:
- _title: 'Social Auth Google settings'
- _form: '\Drupal\social_auth_google\Form\GoogleAuthSettingsForm'
- requirements:
- _permission: 'administer social api authentication'