From 9fe53cf13d9cdcd3f7f640cb801d10607cdaa17b Mon Sep 17 00:00:00 2001 From: Chandrapal Badshah <12944530+Chan9390@users.noreply.github.com> Date: Mon, 20 Oct 2025 14:15:28 +0530 Subject: [PATCH] chore: rename lighthouse config endpoint --- api/src/backend/api/specs/v1.yaml | 2 +- api/src/backend/api/v1/urls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/api/src/backend/api/specs/v1.yaml b/api/src/backend/api/specs/v1.yaml index fe7a231c36..99b4508e3a 100644 --- a/api/src/backend/api/specs/v1.yaml +++ b/api/src/backend/api/specs/v1.yaml @@ -3552,7 +3552,7 @@ paths: task_args: null metadata: null description: '' - /api/v1/lighthouse/config: + /api/v1/lighthouse/configuration: get: operationId: lighthouse_config_list description: Retrieve current tenant-level Lighthouse AI settings. Returns a diff --git a/api/src/backend/api/v1/urls.py b/api/src/backend/api/v1/urls.py index 01ff43c8f4..87f55556be 100644 --- a/api/src/backend/api/v1/urls.py +++ b/api/src/backend/api/v1/urls.py @@ -152,7 +152,7 @@ urlpatterns = [ ), # Lighthouse tenant config as singleton endpoint path( - "lighthouse/config", + "lighthouse/configuration", LighthouseTenantConfigViewSet.as_view( {"get": "list", "patch": "partial_update"} ),