123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
- <type name="Magento\Captcha\Model\DefaultModel">
- <arguments>
- <argument name="session" xsi:type="object">Magento\Customer\Model\Session</argument>
- </arguments>
- </type>
- <type name="Magento\Captcha\Observer\CheckUserCreateObserver">
- <arguments>
- <argument name="session" xsi:type="object">Magento\Customer\Model\Session</argument>
- </arguments>
- </type>
- <type name="Magento\Captcha\Observer\CheckUserForgotPasswordBackendObserver">
- <arguments>
- <argument name="session" xsi:type="object">Magento\Customer\Model\Session</argument>
- </arguments>
- </type>
- <type name="Magento\Captcha\Observer\CheckUserLoginObserver">
- <arguments>
- <argument name="session" xsi:type="object">Magento\Customer\Model\Session</argument>
- </arguments>
- </type>
- <type name="Magento\Customer\Controller\Ajax\Login">
- <plugin name="captcha_validation" type="Magento\Captcha\Model\Customer\Plugin\AjaxLogin" sortOrder="50" />
- </type>
- <type name="Magento\Captcha\Model\Customer\Plugin\AjaxLogin">
- <arguments>
- <argument name="formIds" xsi:type="array">
- <item name="user_login" xsi:type="string">user_login</item>
- </argument>
- </arguments>
- </type>
- <type name="Magento\Checkout\Block\Cart\Sidebar">
- <plugin name="login_captcha" type="Magento\Captcha\Model\Cart\ConfigPlugin" sortOrder="50" />
- </type>
- </config>
|