diff --git a/src/routes/api/v1/endpoint/ssl-termination/[name]/+server.ts b/src/routes/api/program/endpoint/ssl-termination/[name]/+server.ts similarity index 94% rename from src/routes/api/v1/endpoint/ssl-termination/[name]/+server.ts rename to src/routes/api/program/endpoint/ssl-termination/[name]/+server.ts index 01166fd..2b0d06f 100644 --- a/src/routes/api/v1/endpoint/ssl-termination/[name]/+server.ts +++ b/src/routes/api/program/endpoint/ssl-termination/[name]/+server.ts @@ -12,7 +12,8 @@ import type { RequestHandler } from './$types'; ***********************************************************/ export const GET: RequestHandler = async ({ request }) => { - return json(1) + + return text("If you read this you are authenticated") } export const PUT: RequestHandler = async ({ request }) => { diff --git a/src/routes/api/v1/reload/+server.ts b/src/routes/api/program/reload/+server.ts similarity index 100% rename from src/routes/api/v1/reload/+server.ts rename to src/routes/api/program/reload/+server.ts