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
@Parameter(description = "Maximum results size (defaults to 100)") @QueryParam("max") IntegermaxResults
166
166
) {
167
-
168
167
returnrequestHandlerFactory
169
168
.rolesRequestHandler(authenticate())
170
169
.handleRoleMembersRequest(
@@ -210,13 +209,30 @@ public AbstractUserRepresentation getUserProfile(
210
209
@Path("profile/{user}")
211
210
@Consumes(MediaType.APPLICATION_JSON)
212
211
@Produces(MediaType.APPLICATION_JSON)
213
-
publicResponseupdateUserProfile(
212
+
publicResponseputUserProfile(
213
+
@Parameter(description = "The id of the user to update the profile for") @PathParam("user") StringuserId,
214
+
@Parameter(description = "Defines the requesting role. Can be 'user' (default) to update the profile as the user, or 'admin' to update the profile as admin") @QueryParam("mode") Stringmode,
@Parameter(description = "The id of the user to update the profile for") @PathParam("user") StringuserId,
215
231
@Parameter(description = "Defines the requesting role. Can be 'user' (default) to update the profile as the user, or 'admin' to update the profile as admin") @QueryParam("mode") Stringmode,
0 commit comments