Skip to content

Commit

Permalink
Merge pull request #14841 from transcom/MAIN-B-22272-v2
Browse files Browse the repository at this point in the history
MAIN B-22272 v2
  • Loading branch information
deandreJones authored Feb 19, 2025
2 parents 9da2b53 + f7b6578 commit 7e2045f
Show file tree
Hide file tree
Showing 28 changed files with 3,153 additions and 86 deletions.
1 change: 1 addition & 0 deletions migrations/app/migrations_manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1090,5 +1090,6 @@
20250120214107_add_international_ntsr_service_items.up.sql
20250121153007_update_pricing_proc_to_handle_international_shuttle.up.sql
20250121184450_upd_duty_loc_B-22242.up.sql
20250123173216_add_destination_queue_db_func_and_gbloc_view.up.sql
20250204162411_updating_create_accessorial_service_item_proc_for_crating.up.sql
20250206173204_add_hawaii_data.up.sql

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions pkg/gen/ghcapi/configure_mymove.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ func configureAPI(api *ghcoperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation customer_support_remarks.GetCustomerSupportRemarksForMove has not yet been implemented")
})
}
if api.QueuesGetDestinationRequestsQueueHandler == nil {
api.QueuesGetDestinationRequestsQueueHandler = queues.GetDestinationRequestsQueueHandlerFunc(func(params queues.GetDestinationRequestsQueueParams) middleware.Responder {
return middleware.NotImplemented("operation queues.GetDestinationRequestsQueue has not yet been implemented")
})
}
if api.GhcDocumentsGetDocumentHandler == nil {
api.GhcDocumentsGetDocumentHandler = ghc_documents.GetDocumentHandlerFunc(func(params ghc_documents.GetDocumentParams) middleware.Responder {
return middleware.NotImplemented("operation ghc_documents.GetDocument has not yet been implemented")
Expand Down
306 changes: 306 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.

12 changes: 12 additions & 0 deletions pkg/gen/ghcapi/ghcoperations/mymove_api.go

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

Loading

0 comments on commit 7e2045f

Please sign in to comment.