1234567891011121314151617181920212223242526 |
- <?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">
- <preference for="Magento\Customer\Model\Customer" type="Magento\Customer\Model\Backend\Customer" />
- <type name="Magento\Customer\Model\ResourceModel\Customer\Collection">
- <arguments>
- <argument name="modelName" xsi:type="string">Magento\Customer\Model\Backend\Customer</argument>
- </arguments>
- </type>
- <preference for="Magento\Framework\Session\SessionManagerInterface" type="Magento\Backend\Model\Session" />
- <type name="Magento\Ui\Model\Export\MetadataProvider">
- <arguments>
- <argument name="data" xsi:type="array">
- <item name="customer_listing" xsi:type="array">
- <item name="created_at" xsi:type="string">created_at</item>
- <item name="last_visit_at" xsi:type="string">last_visit_at</item>
- </item>
- </argument>
- </arguments>
- </type>
- </config>
|