Skip to content

Commit

Permalink
Merge branch 'integrationTesting' into B21575-INT3-Add_order_type
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHawks224 authored Nov 21, 2024
2 parents 34e63e2 + 4b8970f commit 80f171d
Show file tree
Hide file tree
Showing 47 changed files with 1,346 additions and 51 deletions.
1 change: 0 additions & 1 deletion config/env/loadtest.app.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ DEBUG_PPROF=false
DEVLOCAL_AUTH=true
DOD_CA_PACKAGE=/config/tls/api.loadtest.dp3.us.chain.der.p7b
DTOD_USE_MOCK=false
DTOD_SIMULATE_OUTAGE=true
EMAIL_BACKEND=ses
FEATURE_FLAG_SERVER_URL=http://flipt.svc-loadtest.local:8080
HEALTH_SERVER_ENABLED=true
Expand Down
5 changes: 5 additions & 0 deletions pkg/gen/ghcapi/configure_mymove.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,11 @@ func configureAPI(api *ghcoperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation payment_requests.BulkDownload has not yet been implemented")
})
}
if api.MoveCheckForLockedMovesAndUnlockHandler == nil {
api.MoveCheckForLockedMovesAndUnlockHandler = move.CheckForLockedMovesAndUnlockHandlerFunc(func(params move.CheckForLockedMovesAndUnlockParams) middleware.Responder {
return middleware.NotImplemented("operation move.CheckForLockedMovesAndUnlock has not yet been implemented")
})
}
if api.OrderCounselingUpdateAllowanceHandler == nil {
api.OrderCounselingUpdateAllowanceHandler = order.CounselingUpdateAllowanceHandlerFunc(func(params order.CounselingUpdateAllowanceParams) middleware.Responder {
return middleware.NotImplemented("operation order.CounselingUpdateAllowance has not yet been implemented")
Expand Down
113 changes: 111 additions & 2 deletions pkg/gen/ghcapi/embedded_spec.go

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

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

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

Loading

0 comments on commit 80f171d

Please sign in to comment.