MCPcopy Index your code
hub / github.com/codeaashu/claude-code / filterManagedDisabledPlugins

Function filterManagedDisabledPlugins

src/commands/plugin/ManagePlugins.tsx:391–396  ·  view source on GitHub ↗
(plugins: LoadedPlugin[])

Source from the content-addressed store, hash-verified

389 * settings don't create installation records with scope 'managed'.
390 */
391export function filterManagedDisabledPlugins(plugins: LoadedPlugin[]): LoadedPlugin[] {
392 return plugins.filter(plugin => {
393 const marketplace = plugin.source.split('@')[1] || 'local';
394 return !isPluginBlockedByPolicy(`${plugin.name}@${marketplace}`);
395 });
396}
397export function ManagePlugins({
398 setViewState: setParentViewState,
399 setResult,

Callers 1

loadInstalledPluginsFunction · 0.85

Calls 1

isPluginBlockedByPolicyFunction · 0.85

Tested by

no test coverage detected