Skip to content

Commit 674a2ca

Browse files
Merge pull request #33 from magmodules/release/1.13.0
Release/1.13.0
2 parents 7ae619f + e41579e commit 674a2ca

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Service/WebApi/Profiles.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,11 @@ public function execute(int $storeId, array $extra = [], SearchCriteriaInterface
121121
"eav_customer_group" => $customerGroups[$customer->getGroupId()] ?? ''
122122
];
123123

124+
$customAttributes = $customer->getCustomAttributes();
125+
foreach ($customAttributes as $attributeCode => $attribute) {
126+
$mainData['eav_' . $attributeCode] = $attribute->getValue();
127+
}
128+
124129
if ($billingId = $customer->getDefaultBilling()) {
125130
try {
126131
$billing = $this->addressRepository->getById((int)$billingId);

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magmodules/magento2-reloadify",
33
"description": "Reloadify extension for Magento 2",
44
"type": "magento2-module",
5-
"version": "1.12.0",
5+
"version": "1.13.0",
66
"license": [
77
"BSD-2-Clause"
88
],

etc/config.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<default>
1111
<magmodules_reloadify>
1212
<general>
13-
<version>v1.12.0</version>
13+
<version>v1.13.0</version>
1414
<enable>0</enable>
1515
<debug>0</debug>
1616
</general>

0 commit comments

Comments
 (0)