From 5dd04b51ad7ef14dcaa596803eda14b41bb16f82 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sun, 19 Jul 2026 10:44:52 -0400 Subject: [PATCH] bug: fix tests for pluginc ontroller instead of custom --- src/plugins/plugins.controller.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/plugins.controller.ts b/src/plugins/plugins.controller.ts index 054172b0..83e1c911 100644 --- a/src/plugins/plugins.controller.ts +++ b/src/plugins/plugins.controller.ts @@ -70,7 +70,7 @@ export class PluginsController { return response.status(400).json({ error: "invalid url" }); } - if (CustomPagesController.isPrivateHost(raw)) { + if (PluginsController.isPrivateHost(raw)) { return response.status(400).json({ error: "invalid url" }); } @@ -116,7 +116,7 @@ export class PluginsController { scope: manifest.scope ?? null, module: manifest.module ?? manifest.exposedModule ?? null, requiredRole: manifest.requiredRole ?? null, - deployments: CustomPagesController.resolveDeployments( + deployments: PluginsController.resolveDeployments( manifest.deployments, ), });