2021-06-10 15:34:13 +02:00
|
|
|
# ================================================================================
|
|
|
|
# SAML Services
|
|
|
|
# ================================================================================
|
2020-01-31 19:47:34 +01:00
|
|
|
|
|
|
|
services:
|
|
|
|
|
|
|
|
kimai.saml_listener:
|
2021-06-10 15:34:13 +02:00
|
|
|
class: App\Saml\Firewall\SamlListener
|
2020-01-31 19:47:34 +01:00
|
|
|
parent: security.authentication.listener.abstract
|
|
|
|
abstract: true
|
|
|
|
calls:
|
2021-06-10 15:34:13 +02:00
|
|
|
- [setAuth, ['@App\Saml\SamlAuthFactory']]
|
2020-01-31 19:47:34 +01:00
|
|
|
|
|
|
|
App\Saml\Provider\SamlProvider:
|
2021-06-10 15:34:13 +02:00
|
|
|
arguments: ['@App\Repository\UserRepository', '', '@App\Saml\SamlTokenFactory', '@App\Saml\User\SamlUserFactory', '@App\Configuration\SystemConfiguration']
|
2020-01-31 19:47:34 +01:00
|
|
|
|
|
|
|
App\Saml\Security\SamlAuthenticationSuccessHandler:
|
|
|
|
parent: security.authentication.success_handler
|