Skip to content

Commit

Permalink
Merge remote-tracking branch 'transcom/main' into B-18522-Sit-Addl-Va…
Browse files Browse the repository at this point in the history
…lidation-Main
  • Loading branch information
cameroncaci committed Feb 23, 2024
2 parents 7e487be + afaf052 commit cabc60d
Show file tree
Hide file tree
Showing 59 changed files with 5,186 additions and 245 deletions.
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
221 changes: 221 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

0 comments on commit cabc60d

Please sign in to comment.