We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dd081a4 commit edc096bCopy full SHA for edc096b
1 file changed
Generation/PluginListProvider.php
@@ -13,7 +13,6 @@
13
14
use Piwik\Piwik;
15
use Piwik\Plugin\Manager;
16
-use Piwik\Plugins\OpenApiDocs\OpenApiDocs;
17
18
class PluginListProvider
19
{
@@ -45,14 +44,9 @@ public function getAllowedPlugins(): array
45
44
46
private function shouldIncludeEventProvidedPlugin(string $pluginName): bool
47
48
- if (in_array($pluginName, OpenApiDocs::PLUGIN_BLOCKLIST, true)) {
49
- return false;
50
- }
51
-
52
if (!$this->pluginManager->isPluginInFilesystem($pluginName)) {
53
return false;
54
}
55
56
return $this->pluginHasApiFile($pluginName);
57
58
0 commit comments