diff --git a/plugin/web/control-page.ts b/plugin/web/control-page.ts index b877783..ce65a1f 100644 --- a/plugin/web/control-page.ts +++ b/plugin/web/control-page.ts @@ -102,7 +102,7 @@ export function registerControlPage(deps: { // ── Main page ────────────────────────────────────────────────────────────── api.registerHttpRoute({ path: "/dirigent", - auth: "gateway", + auth: "plugin", match: "exact", handler: async (_req, res) => { const entries = identityRegistry.list(); @@ -219,7 +219,7 @@ export function registerControlPage(deps: { // ── API: add identity ────────────────────────────────────────────────────── api.registerHttpRoute({ path: "/dirigent/api/identity", - auth: "gateway", + auth: "plugin", match: "exact", handler: (req, res) => { if (req.method !== "POST") { res.writeHead(405); res.end(); return; } @@ -243,7 +243,7 @@ export function registerControlPage(deps: { // ── API: remove identity ─────────────────────────────────────────────────── api.registerHttpRoute({ path: "/dirigent/api/identity/", - auth: "gateway", + auth: "plugin", match: "prefix", handler: (req, res) => { if (req.method !== "DELETE") { res.writeHead(405); res.end(); return; } @@ -257,7 +257,7 @@ export function registerControlPage(deps: { // ── API: set channel mode ────────────────────────────────────────────────── api.registerHttpRoute({ path: "/dirigent/api/channel-mode", - auth: "gateway", + auth: "plugin", match: "exact", handler: (req, res) => { if (req.method !== "POST") { res.writeHead(405); res.end(); return; } @@ -282,7 +282,7 @@ export function registerControlPage(deps: { // ── API: rescan padded-cell ──────────────────────────────────────────────── api.registerHttpRoute({ path: "/dirigent/api/rescan-padded-cell", - auth: "gateway", + auth: "plugin", match: "exact", handler: (req, res) => { if (req.method !== "POST") { res.writeHead(405); res.end(); return; }