aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Resources/config/services.yml
blob: c734a3a57784ed817acc2d624e07b4b014ce567e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
services:
    wallabag_core.twig.extension:
        class: Wallabag\CoreBundle\Twig\Extension\WallabagExtension
        tags:
            - { name: twig.extension }

    wsse.security.authentication.provider:
        class: Wallabag\CoreBundle\Security\Authentication\Provider\WsseProvider
        public: false
        arguments: ['', '%kernel.cache_dir%/security/nonces']

    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']

    wallabag_core.helper.detect_active_theme:
        class: Wallabag\CoreBundle\Helper\DetectActiveTheme
        arguments:
            - @security.context
            - %theme% # default theme from parameters.yml

    wallabag_core.form.type.config:
        class: Wallabag\CoreBundle\Form\Type\ConfigType
        arguments:
            - %liip_theme.themes%
        tags:
            - { name: form.type, alias: config }