Add endpoints for config setting

This commit is contained in:
Ajay
2025-04-08 15:18:32 -04:00
parent 2aa3589312
commit ac26aed21c
3 changed files with 15 additions and 5 deletions

View File

@@ -60,6 +60,8 @@ import { getReady } from "./routes/getReady";
import { getMetrics } from "./routes/getMetrics";
import { getSegmentID } from "./routes/getSegmentID";
import { postCasual } from "./routes/postCasual";
import { getConfigEndpoint } from "./routes/getConfig";
import { setConfig } from "./routes/setConfig";
export function createServer(callback: () => void): Server {
// Create a service (the app object is just a callback).
@@ -235,6 +237,9 @@ function setupRoutes(router: Router, server: Server) {
router.get("/api/branding/:prefix", getBrandingByHashEndpoint);
router.post("/api/branding", postBranding);
router.get("/api/config", getConfigEndpoint);
router.get("/api/config", setConfig);
router.post("/api/casual", postCasual);
/* istanbul ignore next */