From 131f94c4d36e74d83e5ff4e7561df968b94d7a99 Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Tue, 24 Feb 2026 13:02:52 +0000 Subject: [PATCH] Bug 14962: (QA follow-up) Remove display_type filter parameter with no backing field The display_type query parameter was declared on both GET /displays and GET /public/displays but there is no display_type column in the displays table, no such property in the schema definition, and no accessor in the DBIC schema. Remove the parameter to avoid confusing API consumers. Sponsored-by: ByWater Solutions Signed-of-by: Martin Renvoize --- api/v1/swagger/paths/displays.yaml | 5 ----- api/v1/swagger/paths/public_displays.yaml | 5 ----- 2 files changed, 10 deletions(-) diff --git a/api/v1/swagger/paths/displays.yaml b/api/v1/swagger/paths/displays.yaml index 75d7bc5747a..c9d0c3caac8 100644 --- a/api/v1/swagger/paths/displays.yaml +++ b/api/v1/swagger/paths/displays.yaml @@ -29,11 +29,6 @@ description: Filter by display branch required: false type: string - - name: display_type - in: query - description: Filter by display type - required: false - type: string - $ref: "../swagger.yaml#/parameters/match" - $ref: "../swagger.yaml#/parameters/order_by" - $ref: "../swagger.yaml#/parameters/page" diff --git a/api/v1/swagger/paths/public_displays.yaml b/api/v1/swagger/paths/public_displays.yaml index 35bf8640644..007e7e6fa1f 100644 --- a/api/v1/swagger/paths/public_displays.yaml +++ b/api/v1/swagger/paths/public_displays.yaml @@ -24,11 +24,6 @@ description: Filter by display branch required: false type: string - - name: display_type - in: query - description: Filter by display type - required: false - type: string - $ref: "../swagger.yaml#/parameters/match" - $ref: "../swagger.yaml#/parameters/order_by" - $ref: "../swagger.yaml#/parameters/page" -- 2.53.0