From 6d905fcb7ce7bfe3ab02eae949bc60eedd2ede4e Mon Sep 17 00:00:00 2001 From: furyhawk Date: Mon, 1 Jun 2026 09:59:09 +0800 Subject: [PATCH] feat: add additional bus-related routes and passenger volume endpoint --- config/gateway.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/config/gateway.yaml b/config/gateway.yaml index 6426254..136bea3 100644 --- a/config/gateway.yaml +++ b/config/gateway.yaml @@ -32,3 +32,27 @@ routes: summary: Bus services passthrough tags: [Bus] operation_id: gateway_bus_services + + - path: /api/v1/bus-routes + methods: [GET] + upstream: lta_datamall + upstream_path: /api/v1/bus-routes + summary: Bus routes passthrough + tags: [Bus] + operation_id: gateway_bus_routes + + - path: /api/v1/bus-stops + methods: [GET] + upstream: lta_datamall + upstream_path: /api/v1/bus-stops + summary: Bus stops passthrough + tags: [Bus] + operation_id: gateway_bus_stops + + - path: /api/v1/passenger-volume/bus + methods: [GET] + upstream: lta_datamall + upstream_path: /api/v1/passenger-volume/bus + summary: Bus passenger volume passthrough + tags: [Passenger Volume] + operation_id: gateway_passenger_volume_bus