Foros de discusión

Updating User Lockout

thumbnail
Daniel Breitner, modificado hace 15 años.

Updating User Lockout

Regular Member Mensajes: 105 Fecha de incorporación: 16/07/08 Mensajes recientes
Hello all ...

I am trying to un-lock a locked user by clicking on a button.

Everything works fine ... except:

I am calling UserLocalServiceUtil.updateLockout and I get the unlocked user.
But the user is not updated in the database ... do I miss something, or do I have to update him manually ?

With kind regards

Daniel Breitner
Alex Bu, modificado hace 11 años.

RE: Updating User Lockout

New Member Mensaje: 1 Fecha de incorporación: 18/09/12 Mensajes recientes
Same question!
thumbnail
Bart Simpson, modificado hace 11 años.

RE: Updating User Lockout

Liferay Master Mensajes: 522 Fecha de incorporación: 29/08/11 Mensajes recientes
If you digg into the code you'll find that the model is updated but not merged with the current session.
userPersistence.update(user, false);

so you should update the user and merge it as well, using
com.liferay.portal.service.UserLocalServiceUtil.updateUser(User user, boolean merge) 


Hope it helps.