We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 166a23f commit af00449Copy full SHA for af00449
app/code/Magento/Webapi/Model/AbstractSchemaGenerator.php
@@ -83,12 +83,7 @@ public function getListOfServices()
83
{
84
$listOfAllowedServices = [];
85
foreach ($this->serviceMetadata->getServicesConfig() as $serviceName => $service) {
86
- foreach ($service[ServiceMetadata::KEY_SERVICE_METHODS] as $method) {
87
- if ($this->authorization->isAllowed($method[ServiceMetadata::KEY_ACL_RESOURCES])) {
88
- $listOfAllowedServices[] = $serviceName;
89
- break;
90
- }
91
+ $listOfAllowedServices[] = $serviceName;
92
}
93
return $listOfAllowedServices;
94
0 commit comments