From 60fb6dc6a6324d00df2a4a1b42856910705af315 Mon Sep 17 00:00:00 2001 From: Cristina Poncela Cubeiro <140309543+cristinaponcela@users.noreply.github.com> Date: Thu, 18 Jun 2026 12:59:15 +0200 Subject: [PATCH] chore: add auth path getter too --- packages/orchestrator/src/config.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/orchestrator/src/config.ts b/packages/orchestrator/src/config.ts index 64fb1008..fab11bed 100644 --- a/packages/orchestrator/src/config.ts +++ b/packages/orchestrator/src/config.ts @@ -14,6 +14,10 @@ export function getOrchestratorDir(): string { return join(piDir, "orchestrator"); } +export function getAuthPath(): string { + return join(getOrchestratorDir(), "auth.json"); +} + export function getMachinePath(): string { return join(getOrchestratorDir(), "machine.json"); }