Skip to content

Commit

Permalink
Merge pull request #12095 from transcom/B-18061-AOA-Packet-Combination
Browse files Browse the repository at this point in the history
B 18061 aoa packet combination
  • Loading branch information
r-mettler authored Mar 1, 2024
2 parents 6f1e2ee + 8368a46 commit 1937852
Show file tree
Hide file tree
Showing 43 changed files with 2,263 additions and 1,016 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 @@ -322,6 +322,11 @@ func configureAPI(api *ghcoperations.MymoveAPI) http.Handler {
return middleware.NotImplemented("operation move.SetFinancialReviewFlag has not yet been implemented")
})
}
if api.PpmShowAOAPacketHandler == nil {
api.PpmShowAOAPacketHandler = ppm.ShowAOAPacketHandlerFunc(func(params ppm.ShowAOAPacketParams) middleware.Responder {
return middleware.NotImplemented("operation ppm.ShowAOAPacket has not yet been implemented")
})
}
if api.EvaluationReportsSubmitEvaluationReportHandler == nil {
api.EvaluationReportsSubmitEvaluationReportHandler = evaluation_reports.SubmitEvaluationReportHandlerFunc(func(params evaluation_reports.SubmitEvaluationReportParams) middleware.Responder {
return middleware.NotImplemented("operation evaluation_reports.SubmitEvaluationReport has not yet been implemented")
Expand Down
119 changes: 119 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.

62 changes: 62 additions & 0 deletions pkg/gen/ghcapi/ghcoperations/ppm/show_a_o_a_packet.go

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

71 changes: 71 additions & 0 deletions pkg/gen/ghcapi/ghcoperations/ppm/show_a_o_a_packet_parameters.go

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

Loading

0 comments on commit 1937852

Please sign in to comment.