Reset the password of a user from Opal internal users registry.

oadmin.user_reset_password(opal, name, password = NULL)

Arguments

opal

Opal object.

name

User name

password

User password. If not provided, a password will be generated and returned.

Examples

if (FALSE) {
o <- opal.login('administrator','password', url='https://opal-demo.obiba.org')
pwd <- oadmin.user_add(o, "foo", groups = c("datashield", "CNSIM"))
oadmin.user_reset_password(o, "foo", password = "password1234")
oadmin.user_rm(o, "foo")
opal.logout(o)
}