Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

B 18317 multi move get all moves endpoint #11862

Merged
merged 15 commits into from
Feb 22, 2024
Merged
5 changes: 5 additions & 0 deletions pkg/gen/internalapi/configure_mymove.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,11 @@ func configureAPI(api *internaloperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation ppm.DeleteWeightTicket has not yet been implemented")
})
}
if api.MovesGetAllMovesHandler == nil {
api.MovesGetAllMovesHandler = moves.GetAllMovesHandlerFunc(func(params moves.GetAllMovesParams) middleware.Responder {
return middleware.NotImplemented("operation moves.GetAllMoves has not yet been implemented")
})
}
if api.TransportationOfficesGetTransportationOfficesHandler == nil {
api.TransportationOfficesGetTransportationOfficesHandler = transportation_offices.GetTransportationOfficesHandlerFunc(func(params transportation_offices.GetTransportationOfficesParams) middleware.Responder {
return middleware.NotImplemented("operation transportation_offices.GetTransportationOffices has not yet been implemented")
Expand Down
203 changes: 203 additions & 0 deletions pkg/gen/internalapi/embedded_spec.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

58 changes: 58 additions & 0 deletions pkg/gen/internalapi/internaloperations/moves/get_all_moves.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading