Skip to content

Commit

Permalink
Merge pull request #12685 from transcom/B-19175
Browse files Browse the repository at this point in the history
B-19175 Add customer search
  • Loading branch information
pambecker committed May 16, 2024
2 parents 5395352 + 1030007 commit bbd3295
Show file tree
Hide file tree
Showing 38 changed files with 2,678 additions and 432 deletions.
5 changes: 5 additions & 0 deletions pkg/gen/ghcapi/configure_mymove.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,11 @@ func configureAPI(api *ghcoperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation evaluation_reports.SaveEvaluationReport has not yet been implemented")
})
}
if api.CustomerSearchCustomersHandler == nil {
api.CustomerSearchCustomersHandler = customer.SearchCustomersHandlerFunc(func(params customer.SearchCustomersParams) middleware.Responder {
return middleware.NotImplemented("operation customer.SearchCustomers has not yet been implemented")
})
}
if api.MoveSearchMovesHandler == nil {
api.MoveSearchMovesHandler = move.SearchMovesHandlerFunc(func(params move.SearchMovesParams) middleware.Responder {
return middleware.NotImplemented("operation move.SearchMoves has not yet been implemented")
Expand Down
298 changes: 298 additions & 0 deletions pkg/gen/ghcapi/embedded_spec.go

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

Loading

0 comments on commit bbd3295

Please sign in to comment.