Merge pull request 'Change deletion warning for users with device' (#301) from prathabanKavin/device-mgt-core:userdeletewarning into master

Reviewed-on: #301
pull/303/head
Pahansith Gunathilake 9 months ago
commit c0ecb841e0

@ -349,9 +349,9 @@ public class UserManagementServiceImpl implements UserManagementService {
}
return Response.status(Response.Status.OK).build();
} else {
String msg = "There are enrolled devices for user: " + username + ". Please remove them before deleting the user.";
String msg = "Before deleting this user, ensure there are no devices assigned to the user. You can either remove the devices or change their owner through an update enrollment operation.";
log.error(msg);
return Response.status(400).entity(msg).build();
return Response.status(409).entity(msg).build();
}
} catch (DeviceManagementException | UserStoreException e) {
String msg = "Exception in trying to remove user by user: " + username;

Loading…
Cancel
Save