From cfd45d8a9e204f9777dbb927cc99f40ef6324df6 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Thu, 7 Jul 2022 00:09:19 +0200 Subject: don't have the ControlRoom API in Swagger just causes pain and isn't really useful for anything since it's a webform API meant to be used by the web frontend, not by other applications. --- lib/API.hs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'lib/API.hs') diff --git a/lib/API.hs b/lib/API.hs index f95132a..e491812 100644 --- a/lib/API.hs +++ b/lib/API.hs @@ -47,7 +47,6 @@ type API = "stations" :> Get '[JSON] (Map StationID Station) :<|> "gtfs" :> GtfsRealtimeAPI -- TODO: this should be behind auth / OpenID or something :<|> "admin" :> AdminAPI - :<|> "control" :> ControlRoomAPI -- | The API used for publishing gtfs realtime updates type GtfsRealtimeAPI = "servicealerts" :> Get '[Proto] FeedMessage @@ -70,12 +69,9 @@ type AdminAPI = -- documented, which would be silly and way to verbose. type CompleteAPI = "debug" :> "openapi" :> Get '[JSON] Swagger :<|> API + :<|> "control" :> ControlRoomAPI - -instance ToParamSchema (Maybe UTCTime) where - toParamSchema _ = toParamSchema (Proxy @UTCTime) - -- TODO write something useful here! (and if it's just "hey this is some websocket thingie") instance HasSwagger WebSocket where toSwagger _ = toSwagger (Proxy @(Post '[JSON] NoContent)) -- cgit v1.2.3