(pluginId: string)
| 15 | * install chokepoint, enable op, and UI filters. |
| 16 | */ |
| 17 | export function isPluginBlockedByPolicy(pluginId: string): boolean { |
| 18 | const policyEnabled = getSettingsForSource('policySettings')?.enabledPlugins |
| 19 | return policyEnabled?.[pluginId] === false |
| 20 | } |
| 21 |
no test coverage detected