public function SamlController::changepw in SAML Authentication 8.2
Same name and namespace in other branches
- 8.3 src/Controller/SamlController.php \Drupal\samlauth\Controller\SamlController::changepw()
- 8 src/Controller/SamlController.php \Drupal\samlauth\Controller\SamlController::changepw()
- 4.x src/Controller/SamlController.php \Drupal\samlauth\Controller\SamlController::changepw()
Change password redirector.
Return value
\Symfony\Component\HttpFoundation\RedirectResponse
1 string reference to 'SamlController::changepw'
File
- src/
Controller/ SamlController.php, line 202
Class
- SamlController
- Returns responses for samlauth module routes.
Namespace
Drupal\samlauth\ControllerCode
public function changepw() {
$url = $this->config
->get('idp_change_password_service');
return $this
->createRedirectResponse($url);
}