You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FINERACT-2501: Added operationIds to harden feign methods in methods currently used in tests
- added operationIds to all endpoints for Feign methods currently used in these
- changed these first because changing other methods seems to break builds since these tests will shift due to items being taken out of the OpenApi spec
- added changes to WorkingCapitalStepDef
@@ -131,7 +131,7 @@ public String retrieveOne(@PathParam("userId") @Parameter(description = "userId"
131
131
132
132
@GET
133
133
@Path("template")
134
-
@Operation(summary = "Retrieve User Details Template", description = "This is a convenience resource. It can be useful when building maintenance user interface screens for client applications. The template data returned consists of any or all of:\n"
134
+
@Operation(summary = "Retrieve User Details Template", operationId = "retrieveTemplateUser", description = "This is a convenience resource. It can be useful when building maintenance user interface screens for client applications. The template data returned consists of any or all of:\n"
@@ -148,7 +148,7 @@ public String template(@Context final UriInfo uriInfo) {
148
148
}
149
149
150
150
@POST
151
-
@Operation(summary = "Create a User", description = "Adds new application user.\n" + "\n"
151
+
@Operation(summary = "Create a User", operationId = "createUser", description = "Adds new application user.\n" + "\n"
152
152
+ "Note: Password information is not required (or processed). Password details at present are auto-generated and then sent to the email account given (which is why it can take a few seconds to complete).\n"
@@ -192,7 +192,7 @@ public String update(@PathParam("userId") @Parameter(description = "userId") fin
192
192
193
193
@POST
194
194
@Path("{userId}/pwd")
195
-
@Operation(summary = "Change the password of a User", description = "When updating a password you must provide the repeatPassword parameter also.")
195
+
@Operation(summary = "Change the password of a User", operationId = "changePasswordUser", description = "When updating a password you must provide the repeatPassword parameter also.")
0 commit comments