Merge branch 'dmgt-ra/user/bug' into 'master'

Fix the user deletion issue in devicemgt react app

Closes product-iots#300

See merge request entgra/carbon-device-mgt!414
This commit is contained in:
Dharmakeerthi Lasantha 2020-01-07 07:53:47 +00:00
commit 8fcb753568
2 changed files with 4 additions and 1 deletions

View File

@ -372,8 +372,10 @@ public interface UserManagementService {
@DELETE
@Path("/{username}")
@Consumes(MediaType.WILDCARD)
@ApiOperation(
httpMethod = "DELETE",
consumes = MediaType.WILDCARD,
value = "Deleting a User",
notes = "When an employee leaves the organization, you can remove the user details from WSO2 IoTS using " +
"this REST API.",

View File

@ -363,6 +363,7 @@ public class UserManagementServiceImpl implements UserManagementService {
@DELETE
@Path("/{username}")
@Consumes(MediaType.WILDCARD)
@Override
public Response removeUser(@PathParam("username") String username, @QueryParam("domain") String domain) {
if (domain != null && !domain.isEmpty()) {