Skip to content

Commit

Permalink
allow both servicetypes J and U to be searched
Browse files Browse the repository at this point in the history
  • Loading branch information
its-felix committed Nov 23, 2024
1 parent b49e5a7 commit b0349f9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion go/api/web/schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ import (
func NewQueryFlightSchedulesEndpoint(dh *data.Handler) echo.HandlerFunc {
return func(c echo.Context) error {
options := []data.QueryScheduleOption{
data.WithServiceType("J"),
data.WithAny(
data.WithServiceType("J"),
data.WithServiceType("U"),
),
data.WithIgnoreCodeShares(),
}

Expand Down

0 comments on commit b0349f9

Please sign in to comment.