Skip to content

Commit

Permalink
[PNPG-235] feat: added tag internal-pnpg to onboarding/pg/completion …
Browse files Browse the repository at this point in the history
…API (#573)
  • Loading branch information
empassaro authored Oct 28, 2024
1 parent e68c683 commit ff6f148
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/onboarding-ms/src/main/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
"name" : "Onboarding Controller"
}, {
"name" : "billing-portal"
}, {
"name" : "internal-pnpg"
}, {
"name" : "internal-v1"
}, {
Expand Down Expand Up @@ -788,7 +790,7 @@
},
"/v1/onboarding/pg/completion" : {
"post" : {
"tags" : [ "Onboarding Controller" ],
"tags" : [ "Onboarding Controller", "internal-pnpg" ],
"summary" : "Complete PG onboarding request on PNPG domain and set status to COMPLETED.",
"description" : "Perform onboarding as /onboarding/psp but completing the onboarding request to COMPLETED phase.",
"operationId" : "onboardingPgCompletion",
Expand Down
2 changes: 2 additions & 0 deletions apps/onboarding-ms/src/main/docs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ tags:
- name: Onboarding
- name: Onboarding Controller
- name: billing-portal
- name: internal-pnpg
- name: internal-v1
- name: support
paths:
Expand Down Expand Up @@ -573,6 +574,7 @@ paths:
post:
tags:
- Onboarding Controller
- internal-pnpg
summary: Complete PG onboarding request on PNPG domain and set status to COMPLETED.
description: Perform onboarding as /onboarding/psp but completing the onboarding
request to COMPLETED phase.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,8 @@ public Uni<OnboardingResponse> onboardingPspCompletion(@Valid OnboardingPspReque
)
@POST
@Path("/pg/completion")
@Tag(name = "Onboarding Controller")
@Tag(name = "internal-pnpg")
@Consumes(MediaType.APPLICATION_JSON)
@Produces(MediaType.APPLICATION_JSON)
public Uni<OnboardingResponse> onboardingPgCompletion(@Valid OnboardingPgRequest onboardingRequest, @Context SecurityContext ctx) {
Expand Down

0 comments on commit ff6f148

Please sign in to comment.