User management via REST API
Getting users, checking password and resetting password. Used by Vectorama flow.
-
256 268 else 257 269 return new EventUserRestPojo(); 258 270 } 271 272 @POST 273 @Path("/create") 274 @Produces({ MediaType.APPLICATION_JSON }) 275 @Consumes(MediaType.APPLICATION_FORM_URLENCODED) 276 @ApiOperation(value = "Create user", response = EventUserRestPojo.class) 277 public EventUserRestPojo createEventUser() { 278 return null; -
Owner
TODO?
-
-
Status changed to merged
Toggle commit list -
-
Please register or sign in to post a comment