Release 2.61 (#5990)
This commit is contained in:
@@ -17,11 +17,11 @@ final class Constants
|
||||
/**
|
||||
* The current release version
|
||||
*/
|
||||
public const VERSION = '2.60.0';
|
||||
public const VERSION = '2.61.0';
|
||||
/**
|
||||
* The current release: major * 10000 + minor * 100 + patch
|
||||
*/
|
||||
public const VERSION_ID = 26000;
|
||||
public const VERSION_ID = 26100;
|
||||
/**
|
||||
* The software name
|
||||
*/
|
||||
|
||||
@@ -23,6 +23,7 @@ final class Configuration
|
||||
private array $options = [];
|
||||
private bool $enabled = true;
|
||||
private bool $required = true;
|
||||
private ?string $formTheme = null;
|
||||
/**
|
||||
* @var Constraint[]
|
||||
*/
|
||||
@@ -149,4 +150,14 @@ final class Configuration
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getFormTheme(): ?string
|
||||
{
|
||||
return $this->formTheme;
|
||||
}
|
||||
|
||||
public function setFormTheme(string $formTheme): void
|
||||
{
|
||||
$this->formTheme = $formTheme;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ final class SamlAuthenticationSuccessHandler extends DefaultAuthenticationSucces
|
||||
{
|
||||
protected $defaultOptions = [
|
||||
'always_use_default_target_path' => false,
|
||||
'default_target_path' => '/',
|
||||
'default_target_path' => 'homepage',
|
||||
'login_path' => 'saml_login',
|
||||
'target_path_parameter' => '_target_path',
|
||||
'use_referer' => false,
|
||||
|
||||
Reference in New Issue
Block a user