123456789101112131415161718192021 |
- <?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\Authorization\Model\Role">
- <plugin name="updateRoleUsersAcl" type="Magento\User\Model\Plugin\AuthorizationRole" sortOrder="20"/>
- </type>
- <preference for="Magento\User\Api\Data\UserInterface" type="Magento\User\Model\User" />
- <type name="Magento\Framework\Console\CommandListInterface">
- <arguments>
- <argument name="commands" xsi:type="array">
- <item name="UnlockAdminAccountCommand" xsi:type="object">Magento\User\Console\UnlockAdminAccountCommand</item>
- </argument>
- </arguments>
- </type>
- <preference for="Magento\User\Model\Spi\NotificatorInterface" type="Magento\User\Model\Notificator" />
- </config>
|