-
Notifications
You must be signed in to change notification settings - Fork 450
/
Copy pathauthorize.xml
41 lines (35 loc) · 2.14 KB
/
authorize.xml
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
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8" ?>
<container xmlns="http://symfony.com/schema/dic/services"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">
<services>
<service id="fos_oauth_server.authorize.form" class="Symfony\Component\Form\Form">
<argument>%fos_oauth_server.authorize.form.name%</argument>
<argument>%fos_oauth_server.authorize.form.type%</argument>
<argument>null</argument>
<argument type="collection">
<argument key="validation_groups">%fos_oauth_server.authorize.form.validation_groups%</argument>
</argument>
</service>
<service id="fos_oauth_server.authorize.form.type" class="FOS\OAuthServerBundle\Form\Type\AuthorizeFormType">
<tag name="form.type" alias="fos_oauth_server_authorize" />
</service>
<service id="fos_oauth_server.authorize.form.handler.default" class="FOS\OAuthServerBundle\Form\Handler\AuthorizeFormHandler">
<argument type="service" id="fos_oauth_server.authorize.form" />
<argument type="service" id="request_stack" />
</service>
<service id="fos_oauth_server.controller.authorize" class="FOS\OAuthServerBundle\Controller\AuthorizeController" public="true">
<argument type="service" id="request_stack" />
<argument type="service" id="fos_oauth_server.authorize.form" />
<argument type="service" id="fos_oauth_server.authorize.form.handler" />
<argument type="service" id="fos_oauth_server.server" />
<argument type="service" id="security.token_storage" />
<argument type="service" id="router" />
<argument type="service" id="fos_oauth_server.client_manager" />
<argument type="service" id="event_dispatcher" />
<argument type="service" id="twig" />
<argument type="service" id="security.csrf.token_manager" />
<argument type="service" id="session" on-invalid="null" />
</service>
</services>
</container>