Learn R Programming

opalr (version 3.3.1)

oadmin.user_reset_password: Reset user password

Description

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

Usage

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.

See Also

Other user functions: oadmin.user_add(), oadmin.user_delete(), oadmin.user_enable(), oadmin.user_exists(), oadmin.user_profile_delete(), oadmin.user_profiles(), oadmin.users()

Examples

Run this code
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)
}

Run the code above in your browser using DataLab