social_auth_google.routing.yml in Open Social 8.6
Same filename and directory in other branches
- 8.9 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.2 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.3 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.4 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.5 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.7 modules/custom/social_auth_google/social_auth_google.routing.yml
- 8.8 modules/custom/social_auth_google/social_auth_google.routing.yml
modules/custom/social_auth_google/social_auth_google.routing.yml
1 string reference to YAML keys in social_auth_google.routing.yml
- GoogleAuthController::userLoginCallback in modules/
custom/ social_auth_google/ src/ Controller/ GoogleAuthController.php - Authorizes the user after redirect from Google.
File
modules/custom/social_auth_google/social_auth_google.routing.ymlView source
- 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'
-
- social_auth_google.user_login:
- path: '/user/login/google'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::userLogin'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
-
- social_auth_google.user_login_callback:
- path: '/user/login/google/callback'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::userLoginCallback'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
-
- social_auth_google.user_login_notice:
- path: '/user/login/google/notice'
- defaults:
- _title: 'Login'
- _form: '\Drupal\social_auth_extra\Form\AuthLoginNoticeForm'
- network: 'google'
- requirements:
- _role: 'anonymous'
-
- social_auth_google.user_register:
- path: '/user/register/google'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::userRegister'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
-
- social_auth_google.user_register_callback:
- path: '/user/register/google/callback'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleAuthController::userRegisterCallback'
- requirements:
- _role: 'anonymous'
- options:
- no_cache: TRUE
-
- social_auth_google.user_link:
- path: '/social-api/link/google'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleLinkController::linkAccount'
- requirements:
- _role: 'authenticated'
- options:
- no_cache: TRUE
-
- social_auth_google.user_link_callback:
- path: '/social-api/link/google/callback'
- defaults:
- _controller: '\Drupal\social_auth_google\Controller\GoogleLinkController::linkAccountCallback'
- requirements:
- _role: 'authenticated'
- options:
- no_cache: TRUE
-
- social_auth_google.user_unlink:
- path: '/social-api/unlink/google'
- defaults:
- _title: 'Unlink Google'
- _form: '\Drupal\social_auth_extra\Form\AuthUnlinkForm'
- network: 'google'
- requirements:
- _role: 'authenticated'