2015-02-09 22:54:29 +01:00
|
|
|
services:
|
2015-02-23 22:55:06 +01:00
|
|
|
wallabag_core.twig.extension:
|
2015-02-09 22:54:29 +01:00
|
|
|
class: Wallabag\CoreBundle\Twig\Extension\WallabagExtension
|
|
|
|
|
tags:
|
|
|
|
|
- { name: twig.extension }
|
2015-02-23 22:55:06 +01:00
|
|
|
|
2015-02-09 22:54:29 +01:00
|
|
|
wsse.security.authentication.provider:
|
|
|
|
|
class: Wallabag\CoreBundle\Security\Authentication\Provider\WsseProvider
|
|
|
|
|
public: false
|
|
|
|
|
arguments: ['', '%kernel.cache_dir%/security/nonces']
|
2015-02-23 22:55:06 +01:00
|
|
|
|
2015-02-09 22:54:29 +01:00
|
|
|
wsse.security.authentication.listener:
|
|
|
|
|
class: Wallabag\CoreBundle\Security\Firewall\WsseListener
|
|
|
|
|
public: false
|
|
|
|
|
tags:
|
|
|
|
|
- { name: monolog.logger, channel: wsse }
|
|
|
|
|
arguments: ['@security.context', '@security.authentication.manager', '@logger']
|
2015-02-23 22:55:06 +01:00
|
|
|
|
|
|
|
|
wallabag_core.helper.detect_active_theme:
|
|
|
|
|
class: Wallabag\CoreBundle\Helper\DetectActiveTheme
|
|
|
|
|
arguments:
|
|
|
|
|
- @security.context
|
2015-03-01 08:22:29 +01:00
|
|
|
- %theme% # default theme from parameters.yml
|
2015-02-23 22:55:06 +01:00
|
|
|
|
2015-03-07 23:25:36 +01:00
|
|
|
# custom form type
|
2015-02-23 22:55:06 +01:00
|
|
|
wallabag_core.form.type.config:
|
|
|
|
|
class: Wallabag\CoreBundle\Form\Type\ConfigType
|
|
|
|
|
arguments:
|
|
|
|
|
- %liip_theme.themes%
|
|
|
|
|
tags:
|
|
|
|
|
- { name: form.type, alias: config }
|
2015-03-07 23:25:36 +01:00
|
|
|
|
|
|
|
|
wallabag_core.form.type.forgot_password:
|
|
|
|
|
class: Wallabag\CoreBundle\Form\Type\ForgotPasswordType
|
|
|
|
|
arguments:
|
|
|
|
|
- @doctrine
|
|
|
|
|
tags:
|
|
|
|
|
- { name: form.type, alias: forgot_password }
|
2015-03-28 14:27:45 +01:00
|
|
|
|
|
|
|
|
wallabag_core.param_converter.username_rsstoken_converter:
|
|
|
|
|
class: Wallabag\CoreBundle\ParamConverter\UsernameRssTokenConverter
|
|
|
|
|
tags:
|
|
|
|
|
- { name: request.param_converter, converter: username_rsstoken_converter }
|
|
|
|
|
arguments:
|
|
|
|
|
- @doctrine
|